blob: a59eb9bc57f882d0851aca0cf154fdfc888e5191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
}
root_type ModifyEntity;
|