Given the overlap, should we consider `PaymentShippingOption` inheriting from `PaymentItem` :
```Java
dictionary PaymentItem {
required DOMString label;
required PaymentCurrencyAmount amount;
boolean pending = false;
};
dictionary PaymentShippingOption : PaymentItem {
required DOMString id;
boolean selected = false;
};
```
With `pending` being a somewhat meaningless member for `PaymentShippingOption`?
--
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-request/issues/681