import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateCheckoutSessionGlobals = { merchantAccountId?: string | undefined; }; export type UpdateCheckoutSessionRequest = { /** * The ID of the checkout session. */ sessionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; checkoutSessionCreate: components.CheckoutSessionCreate; }; /** @internal */ export type UpdateCheckoutSessionRequest$Outbound = { session_id: string; merchantAccountId?: string | null | undefined; CheckoutSessionCreate: components.CheckoutSessionCreate$Outbound; }; /** @internal */ export declare const UpdateCheckoutSessionRequest$outboundSchema: z.ZodType; export declare function updateCheckoutSessionRequestToJSON(updateCheckoutSessionRequest: UpdateCheckoutSessionRequest): string; //# sourceMappingURL=updatecheckoutsession.d.ts.map