import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * File to be used as an organization avatar. */ export type OrganizationAvatarFileRead = { /** * 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: "organization_avatar"; isUploaded: boolean; createdAt: Date; sizeReadable: string; publicUrl: string; }; /** @internal */ export declare const OrganizationAvatarFileRead$inboundSchema: z.ZodMiniType; export declare function organizationAvatarFileReadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organizationavatarfileread.d.ts.map