com.ziqni.transformers.domain.CreateUnitOfMeasureRequest.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ziqni-transformers Show documentation
Show all versions of ziqni-transformers Show documentation
Ziqni transformers project.
The newest version!
package com.ziqni.transformers.domain
/***
* Copyright (C) Ziqni Ltd, Inc - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Ziqni Ltd, 2023
*/
case class CreateUnitOfMeasureRequest(val key: String, val name: String, val multiplier: Double, val isoCode: Option[String] = None, val unitOfMeasureType: Option[String] = None, val customFields: Map[String,CustomFieldEntry[_<:Any]] = Map.empty) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy