Re: [browser-payment-api] [api] Section 11 PaymentResponse seems to be missing shippingAddress (#75)

It's a part of the of the PaymentRequest object, I believe.

````JavaScript
var request = new PaymentRequest(methods, details, {'requestShipping': true});
request.addEventListener('onShippingAddressChange', function(event) {
  console.log(request.shippingAddress);
});
request.show().then(handleResponse).catch(handleError);
````

---
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/browser-payment-api/issues/75#issuecomment-197627506

Received on Thursday, 17 March 2016 01:00:48 UTC