/* Options: Date: 2025-09-14 06:40:19 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDimensions.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class GetDimensionsResponse { public DimensionsXml: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/informationondimensions") export class GetDimensions implements IReturn { public LicenseeId: string; public RecordStatus: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetDimensions'; } public getMethod() { return 'GET'; } public createResponse() { return new GetDimensionsResponse(); } }