/* Options: Date: 2026-02-04 04:56:56 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDimensions.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/informationondimensions") open class GetDimensions : 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") open var LicenseeId:UUID? = 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") open var RecordStatus:String? = null companion object { private val responseType = GetDimensionsResponse::class.java } override fun getResponseType(): Any? = GetDimensions.responseType } open 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") open var DimensionsXml:String? = null }