forked from LiveCarta/PayPal-PHP-Server-SDK
* Automated commit message * Automated commit message * Automated commit message * Automated commit message --------- Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
848 B
848 B
Card Verification Processor Response
The processor response information for payment requests, such as direct credit card transactions.
Structure
CardVerificationProcessorResponse
Fields
| Name | Type | Tags | Description | Getter | Setter |
|---|---|---|---|---|---|
avsCode |
?string(AVSCode) |
Optional | The address verification code for Visa, Discover, Mastercard, or American Express transactions. | getAvsCode(): ?string | setAvsCode(?string avsCode): void |
cvvCode |
?string(CVVCode) |
Optional | The card verification value code for for Visa, Discover, Mastercard, or American Express. | getCvvCode(): ?string | setCvvCode(?string cvvCode): void |
Example (as JSON)
{
"avs_code": "E",
"cvv_code": "All others"
}