/* Options: Date: 2025-05-05 00:07:54 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: GetTwilioToken.* //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.* /** * Get a twilio token for client SDKs */ @Route(Path="/admin/token", Verbs="GET") @Api(Description="Get a twilio token for client SDKs") open class GetTwilioToken : IReturn, IGet { /** * The account ID associated with the token */ @ApiMember(Description="The account ID associated with the token") open var accountId:String? = null companion object { private val responseType = GetTwilioTokenResponse::class.java } override fun getResponseType(): Any? = GetTwilioToken.responseType } open class GetTwilioTokenResponse { /** * The twilio token to use */ @ApiMember(Description="The twilio token to use") open var token:String? = null }