summaryrefslogtreecommitdiffstats
path: root/common/commands/notification.fbs
blob: 7ced666b7ee0a0570c33bc465a1bb761287c272d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Sink.Commands;

table Notification {
    type: int = 0; //See notification.h
    identifier: string; //An identifier that links back to the something related to the notification (e.g. a command id)
    message: string;
    code: int = 0; //See notification.h
    progress: int = 0; //See notification.h
    total: int = 0; //See notification.h
    entities: [string]; //A list of entities this applies to
}

root_type Notification;