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