TraktAccessToken

data class TraktAccessToken(val accessToken: String? = null, val tokenType: String? = null, val expiresIn: Int? = null, val refreshToken: String? = null)

Constructors

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

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String? = null
Link copied to clipboard
@SerialName(value = "expires_in")
val expiresIn: Int? = null
Link copied to clipboard
@SerialName(value = "refresh_token")
val refreshToken: String? = null
Link copied to clipboard
@SerialName(value = "token_type")
val tokenType: String? = null