blob: bd12606cdd79adeac1e81163c907b6cb186e2c7d [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/#idl-def-paymentcomplete
enum PaymentComplete {
"success",
"fail",
""
};
// https://w3c.github.io/browser-payment-api/#paymentresponse-interface
[
RuntimeEnabled=PaymentRequest,
] interface PaymentResponse {
readonly attribute DOMString methodName;
readonly attribute PaymentCurrencyAmount totalAmount;
readonly attribute DOMString? payerEmail;
readonly attribute DOMString? payerPhone;
[CallWith=ScriptState, RaisesException] readonly attribute object details;
readonly attribute PaymentAddress? shippingAddress;
readonly attribute DOMString? shippingOption;
[CallWith=ScriptState] Promise<void> complete(optional PaymentComplete paymentResult = "");
};