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