1
0
Files
PayPal-PHP-Server-SDK/doc/models/three-d-secure-card-authentication-response.md
Patrick Powers 6da8b9b5b8 1.1.0 Release (#44)
* Automated commit message

* add changelog

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
Co-authored-by: Patrick Powers <patickpowers@hey.com>
2025-05-27 13:31:17 -05:00

1.4 KiB

Three D Secure Card Authentication Response

Results of 3D Secure Authentication.

Structure

ThreeDSecureCardAuthenticationResponse

Fields

Name Type Tags Description Getter Setter
authenticationStatus ?string(PaResStatus) Optional Transactions status result identifier. The outcome of the issuer's authentication.

Constraints: Minimum Length: 1, Maximum Length: 255, Pattern: ^[0-9A-Z_]+$
getAuthenticationStatus(): ?string setAuthenticationStatus(?string authenticationStatus): void
enrollmentStatus ?string(EnrollmentStatus) Optional Status of Authentication eligibility.

Constraints: Minimum Length: 1, Maximum Length: 255, Pattern: ^[0-9A-Z_]+$
getEnrollmentStatus(): ?string setEnrollmentStatus(?string enrollmentStatus): void
authenticationId ?string Optional The externally received 3ds authentication id, to be returned in card detokenization response.

Constraints: Minimum Length: 1, Maximum Length: 255, Pattern: ^[0-9a-zA-Z_-]+$
getAuthenticationId(): ?string setAuthenticationId(?string authenticationId): void

Example (as JSON)

{
  "authentication_status": "D",
  "enrollment_status": "U",
  "authentication_id": "authentication_id2"
}