mirror of
https://github.com/servo/servo
synced 2026-05-11 17:37:21 +02:00
32 lines
850 B
Plaintext
32 lines
850 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Payment Method: Basic Card (https://w3c.github.io/payment-method-basic-card/)
|
|
|
|
dictionary BasicCardRequest {
|
|
sequence<DOMString> supportedNetworks = [];
|
|
boolean requestSecurityCode = true;
|
|
};
|
|
|
|
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;
|
|
};
|