OAuthResponse

data class OAuthResponse(var accessToken: String? = null, var tokenType: String? = null, var refreshToken: String? = null, var refreshExpiresIn: Int? = null, var expiresIn: Int? = null, var scope: String? = null)

Constructors

Link copied to clipboard
constructor(accessToken: String? = null, tokenType: String? = null, refreshToken: String? = null, refreshExpiresIn: Int? = null, expiresIn: Int? = null, scope: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "access_token")
var accessToken: String?
Link copied to clipboard
@SerializedName(value = "expires_in")
var expiresIn: Int?
Link copied to clipboard
@SerializedName(value = "refresh_expires_in")
var refreshExpiresIn: Int?
Link copied to clipboard
@SerializedName(value = "refresh_token")
var refreshToken: String?
Link copied to clipboard
@SerializedName(value = "scope")
var scope: String?
Link copied to clipboard
@SerializedName(value = "token_type")
var tokenType: String?