/* Options: Date: 2025-05-04 22:10:20 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: GetTwilioToken.* //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 { /** * Get a twilio token for client SDKs */ @Route(Path="/admin/token", Verbs="GET") @Api(Description="Get a twilio token for client SDKs") public static class GetTwilioToken implements IReturn, IGet { /** * The account ID associated with the token */ @ApiMember(Description="The account ID associated with the token") public String accountId = null; public String getAccountId() { return accountId; } public GetTwilioToken setAccountId(String value) { this.accountId = value; return this; } private static Object responseType = GetTwilioTokenResponse.class; public Object getResponseType() { return responseType; } } public static class GetTwilioTokenResponse { /** * The twilio token to use */ @ApiMember(Description="The twilio token to use") public String token = null; public String getToken() { return token; } public GetTwilioTokenResponse setToken(String value) { this.token = value; return this; } } }