Re: [w3c/browser-payment-api] Should the payment request contain line item details? (#49)

Which examples are you referring to @halindrome ?

This one from the spec has no details of the basket of goods:

```javascript
{
  "items": [
    {
      "id": "basket",
      "label": "Sub-total",
      "amount": { "currencyCode": "USD", "value" : "55.00" }, // US$55.00
    },
    {
      "id": "tax",
      "label": "Sales Tax",
      "amount": { "currencyCode": "USD", "value" : "5.00" }, // US$5.00
    },
    {
      "id": "total",
      "label": "Total due",
      "amount": { "currencyCode": "USD", "value" : "60.00" }, // US$60.00
    }
  ]
}
```

---
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/49#issuecomment-204280462

Received on Friday, 1 April 2016 07:15:19 UTC