Notifications data structures
FolderNotificationsData
This structure contains data fields required for notification management.
| Data Type | Field Name | Description |
|---|---|---|
| Int | FolderId | ID of folder |
| Int | UserID | UserID, used in certain methods |
| Int | FileSystemOperations | Enum of FileSystemOperation: None = 0×00, //0 Created = 0×01, //1 InternalDownload = 0×04, //4 ExternalDownload = 0×08, //8 Deleted = 0×020, //32 MovedIn = 0×080, //128 MovedOut = 0×0100, //256 Restored = 0×0200, //512 PermissionEdit = 0×01000, //4096 Distributed = 0×02000, //8192 InternalUpload = 0×04000, //16384 ExternalUpload = 0×08000, //32768 FileRename = 0×10000, //65536 FolderRename = 0×20000, //131072 Quarantine = 0×40000, //262144 DescriptionEdit = 0×80000, //524288 ChangeFileOwner = 0×100000, //1048576 All = (0×4000000 * 2) – 1 |
| Bool | Recursive | Include subfolders |
| Bool | Active | Flag that defines if notifications are active |
Was this topic helpful?