Appearance
Express Docs / AdyenGooglePayOptions
Type Alias: AdyenGooglePayOptions
AdyenGooglePayOptions =
Omit<GooglePayOptions,"gateway">
Defined in: src/types.ts:531
Options for the Adyen Google Pay provider (Adyen:GooglePay).
Remarks
Uses the native Google Pay JS API with Adyen as the payment gateway. Identical shape to ComputopGooglePayOptions — the gateway field is fixed to 'adyen' internally and does not need to be supplied by the integrator.
Example
ts
const adyenGooglePay: ProviderButtonConfig<'Adyen:GooglePay'> = {
providerProtocolType: 'Adyen',
paymentMethodType: 'GooglePay',
container: '#adyen-googlepay-container',
options: {
totalAmount: 1000,
currencyCode: 'EUR',
countryCode: 'DE',
gatewayMerchantId: 'YOUR_ADYEN_MERCHANT_ACCOUNT',
},
};