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

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

The newest version!
package com.codacy.client.bitbucket.v2

import play.api.libs.functional.syntax._
import play.api.libs.json.{__, Reads}

case class AccessToken(access_token: String, refresh_token: String, expires_in: Int, scopes: String, token_type: String)

object AccessToken {

  // format: off
  implicit val reader: Reads[AccessToken] = (
    (__ \ "access_token").read[String] and
      (__ \ "refresh_token").read[String] and
      (__ \ "expires_in").read[Int] and
      (__ \ "scopes").read[String] and
      (__ \ "token_type").read[String]
  )(AccessToken.apply _)
  // format: on
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy