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