/* Options: Date: 2025-05-25 06:56:44 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: GetSystemInfo.* //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 { public static class GetSystemInfo implements IReturn { private static Object responseType = SystemInfo.class; public Object getResponseType() { return responseType; } } public static class SystemInfo { public String version = null; public String twilioFallbackBaseUrl = null; public String twilioCallbackUrl = null; public String twilioCallbackBaseUrl = null; public String sipOriginationUrl = null; public Boolean isDevEnvironment = null; public String getVersion() { return version; } public SystemInfo setVersion(String value) { this.version = value; return this; } public String getTwilioFallbackBaseUrl() { return twilioFallbackBaseUrl; } public SystemInfo setTwilioFallbackBaseUrl(String value) { this.twilioFallbackBaseUrl = value; return this; } public String getTwilioCallbackUrl() { return twilioCallbackUrl; } public SystemInfo setTwilioCallbackUrl(String value) { this.twilioCallbackUrl = value; return this; } public String getTwilioCallbackBaseUrl() { return twilioCallbackBaseUrl; } public SystemInfo setTwilioCallbackBaseUrl(String value) { this.twilioCallbackBaseUrl = value; return this; } public String getSipOriginationUrl() { return sipOriginationUrl; } public SystemInfo setSipOriginationUrl(String value) { this.sipOriginationUrl = value; return this; } public Boolean getIsDevEnvironment() { return isDevEnvironment; } public SystemInfo setIsDevEnvironment(Boolean value) { this.isDevEnvironment = value; return this; } } }