(* Options: Date: 2025-05-04 22:40:33 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddToSessionLog.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Sessions open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations /// ///Adds the specified log entry to the session log. /// [] [] [] type AddToSessionLog() = interface IReturnVoid /// ///The ID of the active session /// [] member val SessionId:String = null with get,set /// ///The log text to add /// [] member val LogText:String = null with get,set