/* Options: Date: 2025-05-04 20:10:26 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: AddToSessionLog.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Voice.Api.Sessions; namespace Voice.Api.Sessions { /// ///Adds the specified log entry to the session log. /// [Route("/sessions/{sessionId}/log", "POST")] [Api(Description="Adds the specified log entry to the session log.")] public partial class AddToSessionLog : IReturnVoid { /// ///The ID of the active session /// [ApiMember(Description="The ID of the active session")] public virtual string SessionId { get; set; } /// ///The log text to add /// [ApiMember(Description="The log text to add")] public virtual string LogText { get; set; } } }