The MerchantValidationEvent interface of the the Payment Request enables a merchant to verify themselves as allowed to use a particular handler.
The MerchantValidationEvent interface of the the Payment Request enables a merchant to verify themselves as allowed to use a particular handler.
(complete this & args)
Method.
The web.MerchantValidationEvent
method complete() takes merchant-specific
previously received from the web.validationURL
and uses it
validate the merchant.
merchantValidationEvent.complete(validationData); merchantValidationEvent.complete(merchantSessionPromise);
See also: https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/complete
Method. The `web.MerchantValidationEvent` method complete() takes merchant-specific previously received from the `web.validationURL` and uses it validate the merchant. `merchantValidationEvent.complete(validationData); merchantValidationEvent.complete(merchantSessionPromise);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/complete`
Constructor.
The MerchantValidationEvent() constructor creates a new web.MerchantValidationEvent
object. You should not have to create these events yourself; instead, just handle the merchantvalidation event.
type
A dom.DOMString
which must be merchantvalidation, the only type of event which uses the MerchantValidationEvent interface.
options Optional
An optional dictionary which may contain zero or more of the following properties:
methodName Optional
A dom.DOMString
containing the payment method identifier for the payment handler being used. This is an empty string by default.
validationURL Optional
The URL from which to retrieve payment handler specific verification information used to validate the merchant. This is an empty string by default.
See also: https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/MerchantValidationEvent
Constructor. The MerchantValidationEvent() constructor creates a new `web.MerchantValidationEvent` object. You should not have to create these events yourself; instead, just handle the merchantvalidation event. type A `dom.DOMString` which must be merchantvalidation, the only type of event which uses the MerchantValidationEvent interface. options Optional An optional dictionary which may contain zero or more of the following properties: methodName Optional A `dom.DOMString` containing the payment method identifier for the payment handler being used. This is an empty string by default. validationURL Optional The URL from which to retrieve payment handler specific verification information used to validate the merchant. This is an empty string by default. See also: `https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/MerchantValidationEvent`
(method-name this)
Property.
The web.MerchantValidationEvent
property methodName is a read-only
which returns a string indicating the payment method identifier
represents the payment handler that requires merchant validation.
methodID = merchantValidationEvent.methodName;
See also: https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/methodName
Property. The `web.MerchantValidationEvent` property methodName is a read-only which returns a string indicating the payment method identifier represents the payment handler that requires merchant validation. `methodID = merchantValidationEvent.methodName;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/methodName`
(set-method-name! this val)
Property.
The web.MerchantValidationEvent
property methodName is a read-only
which returns a string indicating the payment method identifier
represents the payment handler that requires merchant validation.
methodID = merchantValidationEvent.methodName;
See also: https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/methodName
Property. The `web.MerchantValidationEvent` property methodName is a read-only which returns a string indicating the payment method identifier represents the payment handler that requires merchant validation. `methodID = merchantValidationEvent.methodName;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/methodName`
(set-validation-url! this val)
Property.
The web.MerchantValidationEvent
property validationURL is a
string value providing the URL from which to fetch the payment
data needed to validate the merchant.
validationURL = merchantValidationEvent.validationURL;
See also: https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/validationURL
Property. The `web.MerchantValidationEvent` property validationURL is a string value providing the URL from which to fetch the payment data needed to validate the merchant. `validationURL = merchantValidationEvent.validationURL;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/validationURL`
(validation-url this)
Property.
The web.MerchantValidationEvent
property validationURL is a
string value providing the URL from which to fetch the payment
data needed to validate the merchant.
validationURL = merchantValidationEvent.validationURL;
See also: https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/validationURL
Property. The `web.MerchantValidationEvent` property validationURL is a string value providing the URL from which to fetch the payment data needed to validate the merchant. `validationURL = merchantValidationEvent.validationURL;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/MerchantValidationEvent/validationURL`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close