/* Options: Date: 2025-05-04 22:34:21 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSystemInfo.* //ExcludeTypes: //InitializeCollections: False //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.* open class GetSystemInfo : IReturn { companion object { private val responseType = SystemInfo::class.java } override fun getResponseType(): Any? = GetSystemInfo.responseType } open class SystemInfo { open var version:String? = null open var twilioFallbackBaseUrl:String? = null open var twilioCallbackUrl:String? = null open var twilioCallbackBaseUrl:String? = null open var sipOriginationUrl:String? = null open var isDevEnvironment:Boolean? = null }