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