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