[w3c/payment-request] PaymentShippingOption as a subclass of DisplayItem (#681)

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

Received on Wednesday, 7 February 2018 04:21:55 UTC