PaymentResponse: toJSON() method
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The toJSON()
method of the PaymentResponse
interface is a serializer; it returns a JSON representation of the PaymentResponse
object.
Syntax
toJSON()
Parameters
None.
Return value
A JSON
object that is the serialization of the PaymentResponse
object.
Examples
Using the toJSON method
In this example, calling paymentResponse.toJSON()
returns a JSON representation of the PaymentResponse
object.
payment.show().then((paymentResponse) => {
console.log(paymentResponse.toJSON())
};
});
To get a JSON string, you can use JSON.stringify(paymentResponse)
directly; it will call toJSON()
automatically.
Specifications
No specification found
No specification data found for api.PaymentResponse.toJSON
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
BCD tables only load in the browser