(* Options: Date: 2025-05-04 21:55:09 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: GetChatTranscript.* //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 [] type ChatTranscriptMessage() = member val Date:String = null with get,set member val From:String = null with get,set member val Body:String = null with get,set member val MediaUri:String = null with get,set member val MediaContentType:String = null with get,set [] type GetChatTranscriptResponse() = member val Messages:ResizeArray = null with get,set /// ///Gets the specified transcript /// [] [] [] type GetChatTranscript() = interface IReturn interface IGet /// ///the session whose transcript you want to get /// [] member val SessionId:String = null with get,set /// ///Include previous messages from this chat party /// [] member val IncludeHistorical:Nullable = new Nullable() with get,set /// ///How far back to include in historical messages. Max 6 months in past /// [] member val HistoricalCutOffDate:String = null with get,set