aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala
diff options
context:
space:
mode:
authorvlad <vlad@driver.xyz>2017-07-01 00:57:35 -0700
committervlad <vlad@driver.xyz>2017-07-01 00:57:35 -0700
commitce6973573e67214340fda451ee84171ea98f9a7c (patch)
tree271ef63de4454c6c6ebc720e2f6fedb2c55293fa /src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala
parent56187bec9276f51886a01a2752c663f2227d9fc3 (diff)
downloadrest-query-ce6973573e67214340fda451ee84171ea98f9a7c.tar.gz
rest-query-ce6973573e67214340fda451ee84171ea98f9a7c.tar.bz2
rest-query-ce6973573e67214340fda451ee84171ea98f9a7c.zip
Simplifying SendGridMailService + not generate scaladocv0.1.14
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala
index b38c2a0..9ce281e 100644
--- a/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala
+++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabelEvidence.scala
@@ -17,7 +17,7 @@ object ApiExportPatientLabelEvidence {
(JsPath \ "labelValue").format[String](Writes[String](x => JsString(x.toUpperCase))) and
(JsPath \ "evidenceText").format[String] and
(JsPath \ "document").format[ApiExportPatientLabelEvidenceDocument]
- ) (ApiExportPatientLabelEvidence.apply, unlift(ApiExportPatientLabelEvidence.unapply))
+ )(ApiExportPatientLabelEvidence.apply, unlift(ApiExportPatientLabelEvidence.unapply))
def fromDomain(evidence: ExportPatientLabelEvidence) = ApiExportPatientLabelEvidence(
evidenceId = evidence.id.toString,