load item to panelDetails and display data
[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: string;
12     description: string;
13     properties: string;
14     writeableBy: string[];
15     trashAt: string;
16     deleteAt: string;
17     isTrashed: boolean;
18 }