Re: [w3c/browser-payment-api] Specifying Mandatory Data (#97)

>  a merchant must be able to tell the payment application that a CVC and/or the billing address is needed for a particular payment.

How about adding this to the payment options along with `requestShipping`?

````javascript
var options = {
  requestShipping: false,
  requestCardSecurityCode: true,
  requestCardBillingAddress: false
};
````

- Advantage: simple.
- Disadvantage: not all payment apps provide cards, so this information does not fit nicely into the common `options` object.

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/browser-payment-api/issues/97#issuecomment-203108872

Received on Tuesday, 29 March 2016 21:17:16 UTC