import * as z from "zod/v3"; /** * The assurance details provided by Google Pay */ export type GooglePayAssuranceDetails = { /** * Defines if an account was verified. */ accountVerified?: boolean | null | undefined; /** * Defines if the card holder was authenticated. */ cardHolderAuthenticated?: boolean | null | undefined; }; /** @internal */ export type GooglePayAssuranceDetails$Outbound = { account_verified?: boolean | null | undefined; card_holder_authenticated?: boolean | null | undefined; }; /** @internal */ export declare const GooglePayAssuranceDetails$outboundSchema: z.ZodType; export declare function googlePayAssuranceDetailsToJSON(googlePayAssuranceDetails: GooglePayAssuranceDetails): string; //# sourceMappingURL=googlepayassurancedetails.d.ts.map