web api instance property
PaymentManager: userHint property
Limited availabilitySecure context
The userHint property of the PaymentManager interface provides a hint for the browser to display along with the payment app’s name and icon in the Web-based Payment Handler UI.
Value
A string.
Examples
navigator.serviceWorker.register("serviceworker.js").then((registration) => {
registration.paymentManager.userHint = "Card number should be 16 digits";
registration.paymentManager
.enableDelegations(["shippingAddress", "payerName"])
.then(() => {
// …
});
// …
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.