/* Options: Date: 2025-06-28 22:15:17 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTwilioToken.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IGet { } export class GetTwilioTokenResponse { /** @description The twilio token to use */ // @ApiMember(Description="The twilio token to use") public token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get a twilio token for client SDKs */ // @Route("/admin/token", "GET") // @Api(Description="Get a twilio token for client SDKs") export class GetTwilioToken implements IReturn, IGet { /** @description The account ID associated with the token */ // @ApiMember(Description="The account ID associated with the token") public accountId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetTwilioToken'; } public getMethod() { return 'GET'; } public createResponse() { return new GetTwilioTokenResponse(); } }