import type { RegistryArtifactMetadata } from '../schemas/RegistryArtifactMetadata'; /** * A list of Artifacts */ export interface ListRegistryArtifact { /** * A list of Artifact */ artifacts: RegistryArtifactMetadata[]; /** * The total number of items * @format int64 * @example 1 */ itemCount?: number; /** * The total number of pages * @format int64 * @example 100 */ pageCount?: number; /** * The current page * @format int64 * @example 0 */ pageIndex?: number; /** * The number of items per page * @example 1 */ pageSize?: number; }