import * as z from "zod/v3"; export type GetCheckoutSessionGlobals = { merchantAccountId?: string | undefined; }; export type GetCheckoutSessionRequest = { /** * The ID of the checkout session. */ sessionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetCheckoutSessionRequest$Outbound = { session_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetCheckoutSessionRequest$outboundSchema: z.ZodType; export declare function getCheckoutSessionRequestToJSON(getCheckoutSessionRequest: GetCheckoutSessionRequest): string; //# sourceMappingURL=getcheckoutsession.d.ts.map