import type { ArtifactEntityMetadata } from '../schemas/ArtifactEntityMetadata'; import type { PackageType } from '../schemas/PackageType'; import type { UserInfo } from '../schemas/UserInfo'; /** * Docker Artifact Detail */ export interface DockerArtifactDetail { createdAt?: string; /** * @format int64 */ downloadsCount?: number; imageName: string; isQuarantined?: boolean; metadata?: ArtifactEntityMetadata; modifiedAt?: string; packageType: PackageType; pullCommand?: string; pullCommandByDigest?: string; pushedBy?: UserInfo; quarantineReason?: string; registryPath: string; size?: string; url: string; version: string; }