diff --git a/index.html b/index.html index a8f04c2..a62cd2d 100644 --- a/index.html +++ b/index.html @@ -493,6 +493,72 @@

+
+

+ BasicCardErrors dictionary +

+

+ When retrying a request + for payment, a developer can pass a BasicCardErrors dictionary + for the value of the PaymentValidationErrors's + paymentMethod + member. +

+
+        dictionary BasicCardErrors {
+          DOMString cardNumber;
+          DOMString cardholderName;
+          DOMString cardSecurityCode;
+          DOMString expiryMonth;
+          DOMString expiryYear;
+          AddressErrors billingAddress;
+        };
+      
+
+
+ cardholderName member +
+
+ Validation error for the card holder's name. +
+
+ cardNumber member +
+
+ Validation error for the primary account number for the + card. +
+
+ expiryMonth member +
+
+ Validation error for the expiry month of the card. +
+
+ expiryYear member +
+
+ Validation error for the expiry year of the card. +
+
+ cardSecurityCode member +
+
+ Validation error for the security code of the card. +
+
+ billingAddress member +
+
+ A AddressErrors that + represents validation errors with the billing address + associated with the card. +
+
+

There is only one class of product that can claim conformance to this