OAuthTokenResponse

@Serializable
data class OAuthTokenResponse(val id_token: String? = null, val access_token: String, val token_type: String, val expires_in: Int? = -1, val refresh_token: String? = null, val scope: String? = null)

Constructors

Link copied to clipboard
constructor(id_token: String? = null, access_token: String, token_type: String, expires_in: Int? = -1, refresh_token: String? = null, scope: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id_token: String? = null
Link copied to clipboard
val refresh_token: String? = null
Link copied to clipboard
val scope: String? = null
Link copied to clipboard