// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { Resource, ResourceKind } from "./resource"; export interface CollectionResource extends Resource { kind: ResourceKind.COLLECTION; name: string; description: string; properties: any; portableDataHash: string; manifestText: string; replicationDesired: number; replicationConfirmed: number; replicationConfirmedAt: string; trashAt: string; deleteAt: string; isTrashed: boolean; }