// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { Resource } from "../common/api/common-resource-service"; import { ResourceKind } from "./kinds"; export interface GroupResource extends Resource { kind: ResourceKind.Group; name: string; groupClass: string; description: string; properties: string; writeableBy: string[]; trashAt: string; deleteAt: string; isTrashed: boolean; }