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

com.codacy.client.bitbucket.v2.SshKey.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 SshKey(uuid: String, key: String, label: String)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy