gecko-dev/testing/web-platform/tests/interfaces/payment-method-basic-card.idl
autofoolip e930dcb50b Bug 1539565 [wpt PR 16073] - Update interfaces/payment-method-basic-card.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/payment-method-basic-card.idl (#16073)

Source: https://github.com/tidoust/reffy-reports/blob/e47712b/whatwg/idl/payment-method-basic-card.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/511332983
--

wpt-commits: 1c7590ebf0089749876e4f197aa3c22100500e3e
wpt-pr: 16073
2019-04-24 11:31:18 +01:00

31 lines
830 B
Plaintext

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Payment Method: Basic Card (https://w3c.github.io/payment-method-basic-card/)
dictionary BasicCardRequest {
sequence<DOMString> supportedNetworks = [];
};
dictionary BasicCardChangeDetails {
PaymentAddress? billingAddress = null;
};
dictionary BasicCardResponse {
required DOMString cardNumber;
DOMString cardholderName = "";
DOMString cardSecurityCode = "";
DOMString expiryMonth = "";
DOMString expiryYear = "";
PaymentAddress? billingAddress = null;
};
dictionary BasicCardErrors {
DOMString cardNumber;
DOMString cardholderName;
DOMString cardSecurityCode;
DOMString expiryMonth;
DOMString expiryYear;
AddressErrors billingAddress;
};