summaryrefslogtreecommitdiffstats
path: root/common/commands/modifyentity.fbs
blob: d26051ec8f70d83e144d1313feaa2a1235baae36 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Akonadi2;

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
}

root_type ModifyEntity;