blob: 884be778c2f156c216878afb5fbad19684a37a3e [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.
// http://wicg.github.io/paymentrequest/specs/paymentrequest.html#idl-def-currencyamount
[
RuntimeEnabled=PaymentRequest
] dictionary CurrencyAmount {
required DOMString currencyCode;
required DOMString value;
};