AccessTokenResponseDto

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

Parameters

tokenId
  • @param accessToken * @param refreshToken * @param tokenType * @param expiresIn * @param refreshExpiresIn

Constructors

AccessTokenResponseDto
Link copied to clipboard
fun AccessTokenResponseDto(tokenId: String? = null, accessToken: String? = null, refreshToken: String? = null, tokenType: String? = null, expiresIn: Int? = null, refreshExpiresIn: Int? = null)
  • @param accessToken * @param refreshToken * @param tokenType * @param expiresIn * @param refreshExpiresIn

Properties

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

tokenType
Link copied to clipboard
@SerializedName(value = token_type)
val tokenType: String? = null