AccessTokenRequest

@Serializable
data class AccessTokenRequest(val grantType: String, val clientId: String, val subjectToken: String, val subjectTokenType: String, val scope: String, val requestedTokenType: String, val clientAssertionType: String, val clientAssertion: String)

Constructors

Link copied to clipboard
constructor(grantType: String, clientId: String, subjectToken: String, subjectTokenType: String, scope: String, requestedTokenType: String, clientAssertionType: String, clientAssertion: String)

Properties

Link copied to clipboard
@SerialName(value = "client_assertion")
val clientAssertion: String
Link copied to clipboard
@SerialName(value = "client_assertion_type")
val clientAssertionType: String
Link copied to clipboard
@SerialName(value = "client_id")
val clientId: String
Link copied to clipboard
@SerialName(value = "grant_type")
val grantType: String
Link copied to clipboard
@SerialName(value = "requested_token_type")
val requestedTokenType: String
Link copied to clipboard
@SerialName(value = "scope")
val scope: String
Link copied to clipboard
@SerialName(value = "subject_token")
val subjectToken: String
Link copied to clipboard
@SerialName(value = "subject_token_type")
val subjectTokenType: String

Functions

Link copied to clipboard