dropbox.team_common – Team Common

class dropbox.team_common.GroupManagementType(tag, value=None)

Bases: stone.backends.python_rsrc.stone_base.Union

The group type determines how a group is managed.

This class acts as a tagged union. Only one of the is_* methods will return true. To get the associated value of a tag (if one exists), use the corresponding get_* method.

Variables:
company_managed = GroupManagementType(u'company_managed', None)
is_company_managed()

Check if the union tag is company_managed.

Return type:bool
is_other()

Check if the union tag is other.

Return type:bool
is_system_managed()

Check if the union tag is system_managed.

Return type:bool
is_user_managed()

Check if the union tag is user_managed.

Return type:bool
other = GroupManagementType(u'other', None)
system_managed = GroupManagementType(u'system_managed', None)
user_managed = GroupManagementType(u'user_managed', None)
class dropbox.team_common.GroupSummary(group_name=None, group_id=None, group_management_type=None, group_external_id=None, member_count=None)

Bases: stone.backends.python_rsrc.stone_base.Struct

Information about a group.

Variables:
__init__(group_name=None, group_id=None, group_management_type=None, group_external_id=None, member_count=None)

x.__init__(…) initializes x; see help(type(x)) for signature

group_external_id
group_id
group_management_type
group_name
member_count
class dropbox.team_common.GroupType(tag, value=None)

Bases: stone.backends.python_rsrc.stone_base.Union

The group type determines how a group is created and managed.

This class acts as a tagged union. Only one of the is_* methods will return true. To get the associated value of a tag (if one exists), use the corresponding get_* method.

Variables:
is_other()

Check if the union tag is other.

Return type:bool
is_team()

Check if the union tag is team.

Return type:bool
is_user_managed()

Check if the union tag is user_managed.

Return type:bool
other = GroupType(u'other', None)
team = GroupType(u'team', None)
user_managed = GroupType(u'user_managed', None)
class dropbox.team_common.MemberSpaceLimitType(tag, value=None)

Bases: stone.backends.python_rsrc.stone_base.Union

The type of the space limit imposed on a team member.

This class acts as a tagged union. Only one of the is_* methods will return true. To get the associated value of a tag (if one exists), use the corresponding get_* method.

Variables:
alert_only = MemberSpaceLimitType(u'alert_only', None)
is_alert_only()

Check if the union tag is alert_only.

Return type:bool
is_off()

Check if the union tag is off.

Return type:bool
is_other()

Check if the union tag is other.

Return type:bool
is_stop_sync()

Check if the union tag is stop_sync.

Return type:bool
off = MemberSpaceLimitType(u'off', None)
other = MemberSpaceLimitType(u'other', None)
stop_sync = MemberSpaceLimitType(u'stop_sync', None)
class dropbox.team_common.TimeRange(start_time=None, end_time=None)

Bases: stone.backends.python_rsrc.stone_base.Struct

Time range.

Variables:
__init__(start_time=None, end_time=None)

x.__init__(…) initializes x; see help(type(x)) for signature

end_time
start_time