import * as z from "zod/v3"; export type ClickToPaySessionRequest = { /** * The checkout session ID to create a Click to Pay session for. */ checkoutSessionId: string; }; /** @internal */ export type ClickToPaySessionRequest$Outbound = { checkout_session_id: string; }; /** @internal */ export declare const ClickToPaySessionRequest$outboundSchema: z.ZodType; export declare function clickToPaySessionRequestToJSON(clickToPaySessionRequest: ClickToPaySessionRequest): string; //# sourceMappingURL=clicktopaysessionrequest.d.ts.map