/* Options: Date: 2026-02-04 04:46:33 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 { /** @description XML string containing all the Dimensions and Values for a licensee. */ // @ApiMember(DataType="string", Description="XML string containing all the Dimensions and Values for a licensee.", Name="DimensionsXml", ParameterType="body") public DimensionsXml: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/informationondimensions") export class GetDimensions implements IReturn { /** @description Id of the licensee to retrieve their dimensions and values for. */ // @ApiMember(DataType="Guid", Description="Id of the licensee to retrieve their dimensions and values for.", Name="LicenseeId", ParameterType="body") public LicenseeId: string; /** @description Record Status of dimensions and values to be retrieved.. */ // @ApiMember(DataType="string", Description="Record Status of dimensions and values to be retrieved..", Name="RecordStatus", ParameterType="body") 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(); } }