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