ThreeDS2ChallengeAction
public struct ThreeDS2ChallengeAction : Decodable
Describes an action in which a 3D Secure challenge is presented to the user.
-
The 3D Secure challenge token.
Declaration
Swift
public let challengeToken: String
-
The 3D Secure authorization token.
Declaration
Swift
public let authorisationToken: String?
-
The server-generated payment data that should be submitted to the
/payments/details
endpoint.Declaration
Swift
public let paymentData: String?
-
Initializes a 3D Secure challenge action.
Declaration
Swift
public init(challengeToken: String, authorisationToken: String? = nil, paymentData: String?)
Parameters
token
The 3D Secure challenge token.
authorisationToken
The 3D Secure authorization token.
paymentData
The server-generated payment data that should be submitted to the
/payments/details
endpoint.