import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * File to be associated with the downloadables benefit. */ export type DownloadableFileRead = { /** * The ID of the object. */ id: string; organizationId: string; name: string; path: string; mimeType: string; size: number; storageVersion: string | null; checksumEtag: string | null; checksumSha256Base64: string | null; checksumSha256Hex: string | null; lastModifiedAt: Date | null; version: string | null; service: "downloadable"; isUploaded: boolean; createdAt: Date; sizeReadable: string; }; /** @internal */ export declare const DownloadableFileRead$inboundSchema: z.ZodMiniType; export declare function downloadableFileReadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=downloadablefileread.d.ts.map