Skip to content

Commit

Permalink
Removed incorrect required fields as per issue 134 (#176)
Browse files Browse the repository at this point in the history
Left only PAN as required as this is the only field that is universal
across all card transactions
  • Loading branch information
mattsaxon authored and rvm4 committed May 3, 2016
1 parent 02a6c15 commit 9c32ebc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs/basic-card-payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@ <h2>Payment Method Response</h2>
<h2>BasicCardResponse</h2>
<pre class="idl">
dictionary BasicCardResponse {
required DOMString cardholderName;
DOMString cardholderName;
required DOMString cardNumber;
required DOMString expiryMonth;
required DOMString expiryYear;
DOMString expiryMonth;
DOMString expiryYear;
DOMString cardSecurityCode;

BillingAddress? billingAddress;
Expand Down

0 comments on commit 9c32ebc

Please sign in to comment.