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