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

table ModifyEntity {
    revision: ulong;
    entityId: string;
    deletions: [string]; //A list of deleted properties
    domainType: string;
    delta: [ubyte]; //Contains an entity buffer with all changed properties set
    replayToSource: bool = true;
    modifiedProperties: [string];
}

root_type ModifyEntity;