aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala
index 97bab5e..940f1f0 100644
--- a/src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala
+++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/trial/ApiTrial.scala
@@ -10,10 +10,10 @@ import play.api.libs.json._
final case class ApiTrial(id: String,
lastUpdate: Option[ZonedDateTime],
status: String,
- assignee: Option[Long],
+ assignee: Option[String],
previousStatus: Option[String],
- previousAssignee: Option[Long],
- lastActiveUser: Option[Long],
+ previousAssignee: Option[String],
+ lastActiveUser: Option[String],
condition: Option[String],
phase: Option[String],
hypothesisId: Option[UUID],
@@ -30,10 +30,10 @@ object ApiTrial {
(JsPath \ "id").format[String] and
(JsPath \ "lastUpdate").formatNullable[ZonedDateTime] and
(JsPath \ "status").format[String] and
- (JsPath \ "assignee").formatNullable[Long] and
+ (JsPath \ "assignee").formatNullable[String] and
(JsPath \ "previousStatus").formatNullable[String] and
- (JsPath \ "previousAssignee").formatNullable[Long] and
- (JsPath \ "lastActiveUser").formatNullable[Long] and
+ (JsPath \ "previousAssignee").formatNullable[String] and
+ (JsPath \ "lastActiveUser").formatNullable[String] and
(JsPath \ "condition").formatNullable[String] and
(JsPath \ "phase").formatNullable[String] and
(JsPath \ "hypothesisId").formatNullable[UUID] and