aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/label/ApiLabel.scala
blob: 8c30f3a35ab15a868fdbf4e64bc4eb8dea1a343d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package xyz.driver.pdsuidomain.formats.json.label

import play.api.libs.functional.syntax._
import play.api.libs.json.{Format, JsPath}
import xyz.driver.pdsuidomain.entities.Label

final case class ApiLabel(id: Long, name: String, categoryId: Long)

object ApiLabel {

  implicit val format: Format[ApiLabel] = (
    (JsPath \ "id").format[Long] and
      (JsPath \ "name").format[String] and
      (JsPath \ "categoryId").format[Long]
    ) (ApiLabel.apply, unlift(ApiLabel.unapply))

  def fromDomain(x: Label) = ApiLabel(
    id = x.id.id,
    name = x.name,
    categoryId = x.categoryId.id
  )
}