- From: Rouslan Solomakhin <notifications@github.com>
- Date: Tue, 29 Mar 2016 14:16:33 -0700
- To: w3c/browser-payment-api <browser-payment-api@noreply.github.com>
Received on Tuesday, 29 March 2016 21:17:16 UTC
> 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