/* Options: Date: 2025-05-05 00:09:31 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetTwilioToken.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get a twilio token for client SDKs */ // @Route("/admin/token", "GET") // @Api(Description="Get a twilio token for client SDKs") public class GetTwilioToken : IReturn, IGet, Codable { public typealias Return = GetTwilioTokenResponse /** * The account ID associated with the token */ // @ApiMember(Description="The account ID associated with the token") public var accountId:String? required public init(){} } public class GetTwilioTokenResponse : Codable { /** * The twilio token to use */ // @ApiMember(Description="The twilio token to use") public var token:String? required public init(){} }