ThreeDS2FingerprintAction
public struct ThreeDS2FingerprintAction : Decodable
Describes an action in which a 3D Secure device fingerprint is taken.
-
The 3D Secure fingerprint token.
Declaration
Swift
public let fingerprintToken: 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 fingerprint action.
Declaration
Swift
public init(fingerprintToken: String, authorisationToken: String? = nil, paymentData: String?)
Parameters
fingerprintToken
The 3D Secure fingerprint token.
authorisationToken
The 3D Secure authorization token.
paymentData
The server-generated payment data that should be submitted to the
/payments/details
endpoint.