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