/* Options: Date: 2025-06-19 21:06:14 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetLiveAnswerTranscript.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/nodes/live-answer-chat/transcript") public static class GetLiveAnswerTranscript implements IReturn { public String chatToken = null; public String getChatToken() { return chatToken; } public GetLiveAnswerTranscript setChatToken(String value) { this.chatToken = value; return this; } private static Object responseType = LiveAnswerTranscript.class; public Object getResponseType() { return responseType; } } public static class LiveAnswerTranscript { public ArrayList items = null; public ArrayList getItems() { return items; } public LiveAnswerTranscript setItems(ArrayList value) { this.items = value; return this; } } public static class LiveAnswerMessage { public String id = null; public String role = null; public String participant = null; public String content = null; public String date = null; public String getId() { return id; } public LiveAnswerMessage setId(String value) { this.id = value; return this; } public String getRole() { return role; } public LiveAnswerMessage setRole(String value) { this.role = value; return this; } public String getParticipant() { return participant; } public LiveAnswerMessage setParticipant(String value) { this.participant = value; return this; } public String getContent() { return content; } public LiveAnswerMessage setContent(String value) { this.content = value; return this; } public String getDate() { return date; } public LiveAnswerMessage setDate(String value) { this.date = value; return this; } } }