/* Options: Date: 2026-04-04 08:38:53 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUOMCodeList.* //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.* /** * Get a list of UOM codes (Unit of Measure) */ @Route(Path="/unitofmeasures/") // @Route(Path="/unitofmeasures/{ApplianceId}") @Api(Description="Get a list of UOM codes (Unit of Measure)") open class GetUOMCodeList : IReturn { /** * ApplianceId to narrow the UOM Code list down to relevant ones for the appliance. */ @ApiMember(DataType="Guid", Description="ApplianceId to narrow the UOM Code list down to relevant ones for the appliance.", Name="ApplianceId", ParameterType="query") open var ApplianceId:UUID? = null companion object { private val responseType = GetUOMCodeListResponse::class.java } override fun getResponseType(): Any? = GetUOMCodeList.responseType } @ApiResponse(Description="List of UOM codes (Unit of Measure)") open class GetUOMCodeListResponse { open var UOMCodes:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class UOMModel { open var Code:String? = null open var Name:String? = null open var Description:String? = null open var Symbol:String? = null }