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

    Type Alias GooglePayApprovePaymentResponse

    Response from confirming a Google Pay order with PayPal

    This is returned after successfully confirming a Google Pay payment. Check the status field to determine if 3DS authentication is required.

    type GooglePayApprovePaymentResponse = {
        id: string;
        links: ReadonlyArray<{ href: string; method: string; rel: string }>;
        payment_source: {
            google_pay: {
                card: { brand: string; last_digits: string; type: string };
                name: string;
            };
        };
        status: string;
    }
    Index

    Properties

    id: string
    links: ReadonlyArray<{ href: string; method: string; rel: string }>
    payment_source: {
        google_pay: {
            card: { brand: string; last_digits: string; type: string };
            name: string;
        };
    }
    status: string