21700: Install Bundler system-wide in Rails postinst
[arvados.git] / services / workbench2 / src / websocket / resource-event-message.ts
1 import { LogEventType } from '../models/log';
2 // Copyright (C) The Arvados Authors. All rights reserved.
3 //
4 // SPDX-License-Identifier: AGPL-3.0
5
6 export interface ResourceEventMessage<Properties = {}> {
7     eventAt: string;
8     eventType: LogEventType;
9     id: string;
10     msgID: string;
11     objectKind: string;
12     objectOwnerUuid: string;
13     objectUuid: string;
14     properties: Properties;
15     uuid: string;
16 }