@paypal/paypal-js
    Preparing search index...

    Response from the Google Pay configuration API

    This is returned by getGooglePayConfig(). Note: for merchant use, the config bundled in findEligibleMethods() is recommended instead, as it includes all required fields for Google's PaymentsClient.

    type GooglePayConfigResponse = {
        allowedPaymentMethods: ReadonlyArray<
            {
                parameters: {
                    allowedAuthMethods: ReadonlyArray<string>;
                    allowedCardNetworks: ReadonlyArray<string>;
                };
                tokenizationSpecification: {
                    parameters: { gateway: string; gatewayMerchantId: string };
                    type: string;
                };
                type: string;
            },
        >;
        merchantInfo: {
            authJwt: string;
            merchantId: string;
            merchantName: string;
            merchantOrigin: string;
        };
    }
    Index

    Properties

    allowedPaymentMethods: ReadonlyArray<
        {
            parameters: {
                allowedAuthMethods: ReadonlyArray<string>;
                allowedCardNetworks: ReadonlyArray<string>;
            };
            tokenizationSpecification: {
                parameters: { gateway: string; gatewayMerchantId: string };
                type: string;
            };
            type: string;
        },
    >
    merchantInfo: {
        authJwt: string;
        merchantId: string;
        merchantName: string;
        merchantOrigin: string;
    }