summaryrefslogtreecommitdiffstats
path: root/common/commands/modifyentity.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'common/commands/modifyentity.fbs')
-rw-r--r--common/commands/modifyentity.fbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/commands/modifyentity.fbs b/common/commands/modifyentity.fbs
index b4edb12..d26051e 100644
--- a/common/commands/modifyentity.fbs
+++ b/common/commands/modifyentity.fbs
@@ -3,9 +3,9 @@ namespace Akonadi2;
3table ModifyEntity { 3table ModifyEntity {
4 revision: ulong; 4 revision: ulong;
5 entityId: string; 5 entityId: string;
6 deletions: [string]; 6 deletions: [string]; //A list of deleted properties
7 domainType: string; 7 domainType: string;
8 delta: [ubyte]; 8 delta: [ubyte]; //Contains an entity buffer with all changed properties set
9} 9}
10 10
11root_type ModifyEntity; 11root_type ModifyEntity;