/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type GetCheckoutSessionRequest = { /** * Checkout session ID */ id: string; }; /** @internal */ export type GetCheckoutSessionRequest$Outbound = { id: string; }; /** @internal */ export const GetCheckoutSessionRequest$outboundSchema: z.ZodMiniType< GetCheckoutSessionRequest$Outbound, GetCheckoutSessionRequest > = z.object({ id: z.string(), }); export function getCheckoutSessionRequestToJSON( getCheckoutSessionRequest: GetCheckoutSessionRequest, ): string { return JSON.stringify( GetCheckoutSessionRequest$outboundSchema.parse(getCheckoutSessionRequest), ); }