AccessTokenResponse

@Serializable
data class AccessTokenResponse(val accessToken: String, val expiresIn: Int, val refreshExpires: Int, val tokenType: String, val notBeforePolicy: String, val sessionState: String, val scope: String, val issuedTokenType: String)

Constructors

Link copied to clipboard
constructor(accessToken: String, expiresIn: Int, refreshExpires: Int, tokenType: String, notBeforePolicy: String, sessionState: String, scope: String, issuedTokenType: String)

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String
Link copied to clipboard
@SerialName(value = "expires_in")
val expiresIn: Int
Link copied to clipboard
@SerialName(value = "issued_token_type")
val issuedTokenType: String
Link copied to clipboard
@SerialName(value = "not-before-policy")
val notBeforePolicy: String
Link copied to clipboard
@SerialName(value = "refresh_expires_in")
val refreshExpires: Int
Link copied to clipboard
@SerialName(value = "scope")
val scope: String
Link copied to clipboard
@SerialName(value = "session_state")
val sessionState: String
Link copied to clipboard
@SerialName(value = "token_type")
val tokenType: String