/* Options: Date: 2025-12-06 10:30:32 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReportManagerModuleSaveRequest.* //ExcludeTypes: //DefaultImports: */ export class ReportManagerModule implements IReportManagerDocument { public id: number; public name: string; public text: string; public updated: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReportManagerDocument { } export class ReportManagerSaveDeleteResponse { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/ReportManager/api/Modules", "POST,OPTIONS") // @Route("/v1/ReportManager/api/Modules/{id}", "PUT,OPTIONS") export class ReportManagerModuleSaveRequest extends ReportManagerModule implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'ReportManagerModuleSaveRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new ReportManagerSaveDeleteResponse(); } }