XmBindIdResponse

XmBindIdResponse

Represents that result of an authentication request submitted to BindID.

public protocol XmBindIdResponse: Codable

Inheritance

Codable

Requirements

code

Authorization code returned by BindID. This can be used to obtain the resulting ID Token and Access Token by invoking the token endpoint on the BindID OAuth API. This value is typically sent to application backend where it is exchanged for the sensitive Access Token.

var code: String!

state

Optional. The state value returned from the BindID process. This must match the state passed in the BindID invocation request, if one was passed.

var state: String?

codeVerifier

Code verifier to use for a PKCE token exchange, provided when the “usePkce” request parameter is set to True.

var codeVerifier: String?

redirectUri

Redirect URI to use for a PKCE token exchange, which corresponds to the URI passed in the request.

var redirectUri: String!