/* Options: Date: 2026-02-04 04:32:59 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDimensions.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/informationondimensions") public static class GetDimensions implements IReturn { /** * 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 UUID LicenseeId = null; /** * 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 String RecordStatus = null; public UUID getLicenseeId() { return LicenseeId; } public GetDimensions setLicenseeId(UUID value) { this.LicenseeId = value; return this; } public String getRecordStatus() { return RecordStatus; } public GetDimensions setRecordStatus(String value) { this.RecordStatus = value; return this; } private static Object responseType = GetDimensionsResponse.class; public Object getResponseType() { return responseType; } } public static class GetDimensionsResponse { /** * 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 String DimensionsXml = null; public String getDimensionsXml() { return DimensionsXml; } public GetDimensionsResponse setDimensionsXml(String value) { this.DimensionsXml = value; return this; } } }