aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis/ApiHypothesis.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis/ApiHypothesis.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis/ApiHypothesis.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis/ApiHypothesis.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis/ApiHypothesis.scala
new file mode 100644
index 0000000..0d6763c
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis/ApiHypothesis.scala
@@ -0,0 +1,26 @@
+package xyz.driver.pdsuidomain.formats.json.hypothesis
+
+import java.util.UUID
+
+import xyz.driver.pdsuidomain.entities.Hypothesis
+import play.api.libs.functional.syntax._
+import play.api.libs.json.{Format, JsPath}
+
+final case class ApiHypothesis(id: UUID, name: String, treatmentType: String, description: String)
+
+object ApiHypothesis {
+
+ implicit val format: Format[ApiHypothesis] = (
+ (JsPath \ "id").format[UUID] and
+ (JsPath \ "name").format[String] and
+ (JsPath \ "treatmentType").format[String] and
+ (JsPath \ "description").format[String]
+ ) (ApiHypothesis.apply, unlift(ApiHypothesis.unapply))
+
+ def fromDomain(hypothesis: Hypothesis) = ApiHypothesis(
+ id = hypothesis.id.id,
+ name = hypothesis.name,
+ treatmentType = hypothesis.treatmentType,
+ description = hypothesis.description
+ )
+}