/* Options: Date: 2025-05-04 22:06:27 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteDeviceToken.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IDelete { } /** @description Delete the specified token */ // @Route("/app/tokens", "DELETE") // @Api(Description="Delete the specified token") export class DeleteDeviceToken implements IReturnVoid, IDelete { /** @description The token to delete */ // @ApiMember(Description="The token to delete") public token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteDeviceToken'; } public getMethod() { return 'DELETE'; } public createResponse() {} }