import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateApplePayDigitalWalletSessionGlobals = { merchantAccountId?: string | undefined; }; export type CreateApplePayDigitalWalletSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; applePaySessionRequest: components.ApplePaySessionRequest; }; /** @internal */ export type CreateApplePayDigitalWalletSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; ApplePaySessionRequest: components.ApplePaySessionRequest$Outbound; }; /** @internal */ export declare const CreateApplePayDigitalWalletSessionRequest$outboundSchema: z.ZodType; export declare function createApplePayDigitalWalletSessionRequestToJSON(createApplePayDigitalWalletSessionRequest: CreateApplePayDigitalWalletSessionRequest): string; //# sourceMappingURL=createapplepaydigitalwalletsession.d.ts.map