/* Options: Date: 2025-06-19 21:18:36 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetLiveAnswerTranscript.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/nodes/live-answer-chat/transcript") public class GetLiveAnswerTranscript : IReturn, Codable { public typealias Return = LiveAnswerTranscript public var chatToken:String? required public init(){} } public class LiveAnswerTranscript : Codable { public var items:[LiveAnswerMessage]? required public init(){} } public class LiveAnswerMessage : Codable { public var id:String? public var role:String? public var participant:String? public var content:String? public var date:String? required public init(){} }