Thanks; I'm fixing like this in my current round of edits:
```webidl
interface PaymentAppRequest {
readonly attribute DOMString origin;
readonly attribute DOMString id;
readonly attribute FrozenArray<PaymentMethodData> methodData;
readonly attribute PaymentItem total;
readonly attribute FrozenArray<PaymentDetailsModifier> modifiers;
readonly attribute DOMString optionId;
};
```
(Needed to change Sequence<T> to FrozenArray<T> since you can't have sequences in interfaces).
--
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/webpayments-payment-apps-api/issues/111#issuecomment-287489826