import type { CreatedAtMsV3 } from '../schemas/CreatedAtMsV3'; /** * A Conan package revision (PREV). */ export interface ConanPackageRevisionDetailV3 { createdAt?: CreatedAtMsV3; /** * @format int64 */ downloadCount?: number; /** * The stable UUID of the package revision row. * @format uuid */ id: string; /** * Last-downloaded time (Unix milliseconds), if any. * @format int64 */ lastDownloadedAt?: number | null; /** * The package revision (PREV) hash. */ packageRevision: string; size?: string; }