/* Options: Date: 2025-05-04 23:56:04 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: DeleteAccount.* //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 Deletes the specified account and everything in it. Can only be performed by a System Administrator */ // @Route("/accounts/{accountId}", "DELETE") // @Api(Description="Deletes the specified account and everything in it. Can only be performed by a System Administrator") export class DeleteAccount implements IReturnVoid, IDelete { /** @description The ID of the account to delete */ // @ApiMember(Description="The ID of the account to delete") public accountId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteAccount'; } public getMethod() { return 'DELETE'; } public createResponse() {} }