blob: 24cea693e3be22846dbd98773df076ad25fa135f [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/browser-payment-api/specs/paymentrequest.html#shippingaddress-interface
[
RuntimeEnabled=PaymentRequest,
] interface ShippingAddress {
readonly attribute DOMString regionCode;
readonly attribute sequence<DOMString> addressLine;
readonly attribute DOMString administrativeArea;
readonly attribute DOMString locality;
readonly attribute DOMString dependentLocality;
readonly attribute DOMString postalCode;
readonly attribute DOMString sortingCode;
readonly attribute DOMString languageCode;
readonly attribute DOMString organization;
readonly attribute DOMString recipient;
};