/* Options: Date: 2026-04-16 05:01:28 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: CogitoDialCallback.* //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/cogito/dial") public static class CogitoDialCallback { public String sessionId = null; public String callSid = null; public String apiServer = null; public String flowId = null; public String outboundSipTrunkId = null; public Boolean recordCall = null; public String getSessionId() { return sessionId; } public CogitoDialCallback setSessionId(String value) { this.sessionId = value; return this; } public String getCallSid() { return callSid; } public CogitoDialCallback setCallSid(String value) { this.callSid = value; return this; } public String getApiServer() { return apiServer; } public CogitoDialCallback setApiServer(String value) { this.apiServer = value; return this; } public String getFlowId() { return flowId; } public CogitoDialCallback setFlowId(String value) { this.flowId = value; return this; } public String getOutboundSipTrunkId() { return outboundSipTrunkId; } public CogitoDialCallback setOutboundSipTrunkId(String value) { this.outboundSipTrunkId = value; return this; } public Boolean isRecordCall() { return recordCall; } public CogitoDialCallback setRecordCall(Boolean value) { this.recordCall = value; return this; } } }