- From: Adrian Hope-Bailie <notifications@github.com>
- Date: Fri, 01 Apr 2016 00:14:44 -0700
- To: w3c/browser-payment-api <browser-payment-api@noreply.github.com>
Received on Friday, 1 April 2016 07:15:19 UTC
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