Re: [w3c/webpayments-payment-apps-api] `appRequest` attribute should not be a dictionary (#111)

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

Received on Friday, 17 March 2017 22:48:13 UTC