Merge branch 'master' into 13765-information-inside-details-panel
[arvados-workbench2.git] / src / models / group.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Resource } from "../common/api/common-resource-service";
6 import { ResourceKind } from "./kinds";
7
8 export interface GroupResource extends Resource {
9     kind: ResourceKind.Group;
10     name: string;
11     groupClass: GroupClass | null;
12     description: string;
13     properties: string;
14     writeableBy: string[];
15     trashAt: string;
16     deleteAt: string;
17     isTrashed: boolean;
18 }
19
20 export enum GroupClass {
21     Project = "project"
22 }