-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathResponseDefinitions.php
More file actions
62 lines (59 loc) Β· 1.3 KB
/
ResponseDefinitions.php
File metadata and controls
62 lines (59 loc) Β· 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\GroupFolders;
/**
* @psalm-type GroupFoldersDelegationGroup = array{
* gid: string,
* displayName: string,
* }
*
* @psalm-type GroupFoldersDelegationCircle = array{
* singleId: string,
* displayName: string,
* }
*
* @psalm-type GroupFoldersGroup = array{
* gid: string,
* displayname: string,
* }
*
* @psalm-type GroupFoldersCircle = array{
* sid: string,
* displayname: string,
* }
*
* @psalm-type GroupFoldersUser = array{
* uid: string,
* displayname: string,
* }
*
* @psalm-type GroupFoldersAclManage = array{
* displayname: string,
* id: string,
* type: 'user'|'group'|'circle',
* }
*
* @psalm-type GroupFoldersApplicable = array{
* displayName: string,
* permissions: int,
* type: 'group'|'circle',
* }
*
* @psalm-type GroupFoldersFolder = array{
* id: int,
* mount_point: string,
* group_details: array<string, GroupFoldersApplicable>,
* groups: array<string, int>,
* quota: int,
* size: int,
* acl: bool,
* manage: list<GroupFoldersAclManage>,
* sortIndex?: int,
* }
*/
class ResponseDefinitions {
}