/* Options: Date: 2026-01-10 03:29:15 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LiveAnswerGetLiveKitConfig.* //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/livekit/config", Verbs="GET") public static class LiveAnswerGetLiveKitConfig implements IReturn { public String accountSid = null; public String callSid = null; public String getAccountSid() { return accountSid; } public LiveAnswerGetLiveKitConfig setAccountSid(String value) { this.accountSid = value; return this; } public String getCallSid() { return callSid; } public LiveAnswerGetLiveKitConfig setCallSid(String value) { this.callSid = value; return this; } private static Object responseType = LiveAnswerLiveKitConfig.class; public Object getResponseType() { return responseType; } } public static class LiveAnswerLiveKitConfig { public String message = null; public String getMessage() { return message; } public LiveAnswerLiveKitConfig setMessage(String value) { this.message = value; return this; } } }