/* Options: Date: 2025-09-14 06:44:52 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 { open var LicenseeId:UUID? = null open var RecordStatus:String? = null companion object { private val responseType = GetDimensionsResponse::class.java } override fun getResponseType(): Any? = GetDimensions.responseType } open class GetDimensionsResponse { open var DimensionsXml:String? = null }