blob: 03b543f1f04182877118a4b1df9fde21e64285b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Akonadi2.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;
}
root_type ModifyEntity;
|