Skip to content

Latest commit

 

History

History
61 lines (35 loc) · 1.57 KB

googlepaypaymentinitializeoptions.md

File metadata and controls

61 lines (35 loc) · 1.57 KB

@bigcommerce/checkout-sdkGooglePayPaymentInitializeOptions

Interface: GooglePayPaymentInitializeOptions

A set of options that are required to initialize the GooglePay payment method

If the customer chooses to pay with GooglePay, they will be asked to enter their payment details via a modal. You can hook into events emitted by the modal by providing the callbacks listed below.

Hierarchy

  • GooglePayPaymentInitializeOptions

Index

Properties

Methods

Properties

Optional walletButton

walletButton? : undefined | string

This walletButton is used to set an event listener, provide an element ID if you want users to be able to launch the GooglePay wallet modal by clicking on a button. It should be an HTML element.

Methods

Optional onError

onError(error: Error): void

A callback that gets called when GooglePay fails to initialize or selects a payment option.

Parameters:

Name Type Description
error Error The error object describing the failure.

Returns: void


Optional onPaymentSelect

onPaymentSelect(): void

A callback that gets called when the customer selects a payment option.

Returns: void