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