[w3c/webpayments] Pull filters out of payment method data (#170)

As discussed on the call, I recommend that the payment method filters be defined outside of the opaque payment method data (`data`).

```javascript
var supportedMethods = [{
    methods: ['urn:payment-method:basic-card-payment'],
    filters: {
        networks: ['visa', 'mastercard'],
        types: ['debit']
    },
    data: {
    ...
    }
}];
```

---
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/webpayments/issues/170

Received on Thursday, 4 August 2016 15:58:27 UTC