init load tags for collection
[arvados-workbench2.git] / src / models / link.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Resource } from "./resource";
6
7 export interface LinkResource extends Resource {
8     headUuid: string;
9     tailUuid: string;
10     linkClass: string;
11     name: string;
12     properties: {
13         key?: string;
14         value?: any;
15     };
16 }
17
18 export enum TailType {
19     COLLECTION = 'Collection',
20     JOB = 'Job'
21 }
22
23 export enum LinkClass {
24     STAR = 'star',
25     TAG = 'tag'
26 }