1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Resource, ResourceKind } from "./resource";
7 export interface CollectionResource extends Resource {
8 kind: ResourceKind.Collection;
12 portableDataHash: string;
14 replicationDesired: number;
15 replicationConfirmed: number;
16 replicationConfirmedAt: string;