Add presets method to WorkflowService
[arvados.git] / src / models / link.ts
index 868652809c6485b3a1d90e96e6d19d088f46f0df..c9e085be49ac34e535c34e73abae9d0d63ee13cf 100644 (file)
@@ -3,15 +3,19 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { Resource } from "./resource";
+import { TagProperty } from "~/models/tag";
 
 export interface LinkResource extends Resource {
     headUuid: string;
     tailUuid: string;
     linkClass: string;
     name: string;
-    properties: {};
+    properties: TagProperty;
 }
 
 export enum LinkClass {
-    STAR = 'star'
+    STAR = 'star',
+    TAG = 'tag',
+    PERMISSION = 'permission',
+    PRESET = 'preset',
 }
\ No newline at end of file