mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
20 lines
691 B
Text
20 lines
691 B
Text
// 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;
|
|
sequence<BasicCardType> supportedTypes;
|
|
};
|
|
|
|
enum BasicCardType { "credit", "debit", "prepaid" };
|
|
|
|
dictionary BasicCardResponse {
|
|
required DOMString cardNumber;
|
|
DOMString cardholderName;
|
|
DOMString cardSecurityCode;
|
|
DOMString expiryMonth;
|
|
DOMString expiryYear;
|
|
PaymentAddress? billingAddress;
|
|
};
|