/* Options: Date: 2025-05-23 12:41: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: DeleteReport.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } /** @description Deletes the specified report. Will stop the report if it's being processed */ // @Route("/reports/{reportId}", "DELETE") // @Api(Description="Deletes the specified report. Will stop the report if it's being processed") export class DeleteReport implements IReturnVoid { public reportId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteReport'; } public getMethod() { return 'DELETE'; } public createResponse() {} }