/* Options: Date: 2025-12-06 07:44:30 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: ReportManagerModulesRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ReportManagerRequest { public constructor(init?: Partial>) { (Object as any).assign(this, init); } } 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 { } // @Route("/v1/ReportManager/api/Modules", "GET,OPTIONS") export class ReportManagerModulesRequest extends ReportManagerRequest implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'ReportManagerModulesRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }