/* Options: Date: 2025-05-04 22:06:28 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: DeleteAddress.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } /** @description Delete the specified address */ // @Route("/addresses/{addressId}", "DELETE") // @Api(Description="Delete the specified address") export class DeleteAddress implements IReturnVoid { public accountId: string; /** @description The ID of the address you want to delete */ // @ApiMember(Description="The ID of the address you want to delete") public addressId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteAddress'; } public getMethod() { return 'DELETE'; } public createResponse() {} }