import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateGooglePayDigitalWalletSessionGlobals = { merchantAccountId?: string | undefined; }; export type CreateGooglePayDigitalWalletSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; googlePaySessionRequest: components.GooglePaySessionRequest; }; /** @internal */ export type CreateGooglePayDigitalWalletSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; GooglePaySessionRequest: components.GooglePaySessionRequest$Outbound; }; /** @internal */ export declare const CreateGooglePayDigitalWalletSessionRequest$outboundSchema: z.ZodType; export declare function createGooglePayDigitalWalletSessionRequestToJSON(createGooglePayDigitalWalletSessionRequest: CreateGooglePayDigitalWalletSessionRequest): string; //# sourceMappingURL=creategooglepaydigitalwalletsession.d.ts.map