/** * A Conan recipe revision (RREV). */ export interface ConanRecipeRevisionDetailV3 { /** * Total downloads across every finalized package revision under this revision. * @format int64 */ downloadCount?: number; /** * The stable UUID of the recipe revision row. * @format uuid */ id: string; /** * Most recent download time (Unix milliseconds), if any. * @format int64 */ lastDownloadedAt?: number | null; /** * Finalization time (Unix milliseconds). * @format int64 */ lastPushedAt?: number | null; /** * Number of packages with at least one finalized package revision. * @format int64 */ packageCount?: number; /** * The recipe revision (RREV) hash. */ recipeRevision: string; /** * Recipe files plus all package binaries under this revision. */ size?: string; }