AccessTokenResponseDto

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

Parameters

tokenId
accessToken
refreshToken
tokenType
expiresIn
refreshExpiresIn

Constructors

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

Properties

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