import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateCheckoutSessionGlobals = { merchantAccountId?: string | undefined; }; export type CreateCheckoutSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; checkoutSessionCreate?: components.CheckoutSessionCreate | undefined; }; /** @internal */ export type CreateCheckoutSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; CheckoutSessionCreate?: components.CheckoutSessionCreate$Outbound | undefined; }; /** @internal */ export declare const CreateCheckoutSessionRequest$outboundSchema: z.ZodType; export declare function createCheckoutSessionRequestToJSON(createCheckoutSessionRequest: CreateCheckoutSessionRequest): string; //# sourceMappingURL=createcheckoutsession.d.ts.map