import type { CreatedAtMsV3 } from '../schemas/CreatedAtMsV3'; import type { UserInfoV3 } from '../schemas/UserInfoV3'; /** * File Metadata */ export interface FileMetadataV3 { createdAt: CreatedAtMsV3; createdBy?: UserInfoV3; downloadCmd: string; downloadUrl?: string; id: string; md5: string; name: string; path: string; sha1: string; sha256: string; sha512: string; size: string; }