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

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

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

object Authorization {

  sealed trait RefreshCredentials {
    val grant_type: String
  }

  case class RefreshToken(refresh_token: String) extends RefreshCredentials {
    val grant_type: String = "refresh_token"
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy