STRUCT
OAuthAuthorizationResponseProperties
Contents
- Properties
rawJsonString
scope
state
code
idToken
rawJson
public struct OAuthAuthorizationResponseProperties: Properties, Equatable
Properties for an OAuthAuthorizationResponseStep
.
Properties
rawJsonString
public let rawJsonString: String
scope
public let scope: String?
The resulting scope.
state
public let state: String?
The state parameter provided by the client.
code
public let code: String?
The authorization code.
idToken
public let idToken: String?
The ID token.
rawJson
public let rawJson: [String: String]
The original JSON value of OAuth Authorization Response itself.