-
Notifications
You must be signed in to change notification settings - Fork 41
/
team_common.stone
70 lines (54 loc) · 2 KB
/
team_common.stone
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
63
64
65
66
67
68
69
70
namespace team_common
import common
alias TeamMemberId = String
alias MemberExternalId = String(max_length=64)
alias GroupExternalId = String
alias GroupId = String
alias ResellerId = String
alias TeamId = String
struct GroupSummary
"Information about a group."
group_name String
group_id GroupId
group_external_id GroupExternalId?
"External ID of group. This is an arbitrary ID that an admin can attach to a group."
member_count UInt32?
"The number of members in the group."
group_management_type GroupManagementType
"Who is allowed to manage the group."
example default
group_name = "Test group"
group_id = "g:e2db7665347abcd600000000001a2b3c"
member_count = 10
group_management_type = user_managed
union GroupManagementType
"The group type determines how a group is managed."
user_managed
"A group which is managed by selected users."
company_managed
"A group which is managed by team admins only."
system_managed
"A group which is managed automatically by Dropbox."
union GroupType
"The group type determines how a group is created and managed."
team
"A group to which team members are automatically added. Applicable to
:link:`team folders https://www.dropbox.com/help/986` only."
user_managed
"A group is created and managed by a user."
struct TimeRange
"Time range."
start_time common.DropboxTimestamp?
"Optional starting time (inclusive)."
end_time common.DropboxTimestamp?
"Optional ending time (exclusive)."
union MemberSpaceLimitType
"The type of the space limit imposed on a team member."
off
"The team member does not have imposed space limit."
alert_only
"The team member has soft imposed space limit - the limit is used for display and
for notifications."
stop_sync
"The team member has hard imposed space limit - Dropbox file sync will stop after
the limit is reached."