All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codacy.client.bitbucket.v2.DeployKey.scala Maven / Gradle / Ivy

There is a newer version: 19.0.7
Show newest version
package com.codacy.client.bitbucket.v2

import play.api.libs.functional.syntax._
import play.api.libs.json._

case class DeployKey(id: Long, key: String, label: String)

object DeployKey {
  // format: off
  implicit val reader: Reads[DeployKey] = (
    (__ \ "id").read[Long] and
      (__ \ "key").read[String] and
      (__ \ "label").read[String]
    )(DeployKey.apply _)
  // format: on
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy