/* Options: Date: 2025-12-06 13:14:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SubjectTypeStatisticsRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/document/Subject-Type-statistics", "GET") export class SubjectTypeStatisticsRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SubjectTypeStatisticsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }