Re: [w3c/payment-handler] Why does a Payment App need to see the line items? (#91)

So, an updated proposal would be:

```
dictionary PaymentItem {
  required DOMString label;
  required PaymentCurrencyAmount amount;
  boolean pending = false;
  PaymentItemCategory category = "other";
};

enum PaymentItemCategory {
  "subtotal",
  "tax",
  "shipping",
  "other",
};
`

-- 
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/payment-handler/issues/91#issuecomment-492442068

Received on Tuesday, 14 May 2019 23:02:32 UTC