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

1.4 KiB

Processor Response

The processor response information for payment requests, such as direct credit card transactions.

Structure

ProcessorResponse

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
responseCode ?string(ProcessorResponseCode) Optional Processor response code for the non-PayPal payment processor errors. getResponseCode(): ?string setResponseCode(?string responseCode): void
paymentAdviceCode ?string(PaymentAdviceCode) Optional The declined payment transactions might have payment advice codes. The card networks, like Visa and Mastercard, return payment advice codes. getPaymentAdviceCode(): ?string setPaymentAdviceCode(?string paymentAdviceCode): void

Example (as JSON)

{
  "avs_code": "M",
  "cvv_code": "U",
  "response_code": "PPII",
  "payment_advice_code": "01"
}