/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 234d5c60da72 */ import * as z from "zod/v3"; export type DownloadreportcsvRequest = { /** * The id of the report to download violations for. */ id: string; }; /** @internal */ export type DownloadreportcsvRequest$Outbound = { id: string; }; /** @internal */ export const DownloadreportcsvRequest$outboundSchema: z.ZodType< DownloadreportcsvRequest$Outbound, z.ZodTypeDef, DownloadreportcsvRequest > = z.object({ id: z.string(), }); export function downloadreportcsvRequestToJSON( downloadreportcsvRequest: DownloadreportcsvRequest, ): string { return JSON.stringify( DownloadreportcsvRequest$outboundSchema.parse(downloadreportcsvRequest), ); }