1
0
Files
PayPal-PHP-Server-SDK/doc/models/three-d-secure-authentication-response.md
2024-10-18 19:06:27 +00:00

1.0 KiB

Three D Secure Authentication Response

Results of 3D Secure Authentication.

Structure

ThreeDSecureAuthenticationResponse

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

Example (as JSON)

{
  "authentication_status": "C",
  "enrollment_status": "Y"
}