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