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

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

object SimpleUser {
  implicit val reader: Reads[SimpleUser] = (
    (__ \ "uuid").read[String] and
      (__ \ "display_name").read[String]
  )(SimpleUser.apply _)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy