/* Options: Date: 2025-05-04 23:06:32 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: ListReports.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export class ReportInfo { public id: string; public name: string; public status: ReportStatuses; public statusMessage: string; public dateCreated: string; public dateUpdated: string; public downloadLink: string; public jobId: string; public emailAddressToNotify: string; public server: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ListReportsResponse { public reports: ReportInfo[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Returns all of the active/completed reports for the current user */ // @Route("/reports", "GET") // @Api(Description="Returns all of the active/completed reports for the current user") export class ListReports implements IReturn { public accountId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ListReports'; } public getMethod() { return 'GET'; } public createResponse() { return new ListReportsResponse(); } }