class documentation

class GroupType(bb.Union): (source)

View In Hierarchy

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. :ivar team_common.GroupType.team: A group to which team members are automatically added. Applicable to `team folders <https://www.dropbox.com/help/986>`_ only. :ivar team_common.GroupType.user_managed: A group is created and managed by a user.

Method is_other Check if the union tag is ``other``.
Method is_team Check if the union tag is ``team``.
Method is_user_managed Check if the union tag is ``user_managed``.
Class Variable other Undocumented
Class Variable team Undocumented
Class Variable user_managed Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_other(self): (source)

Check if the union tag is ``other``. :rtype: bool

def is_team(self): (source)

Check if the union tag is ``team``. :rtype: bool

def is_user_managed(self): (source)

Check if the union tag is ``user_managed``. :rtype: bool

Undocumented

Undocumented

user_managed = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)

Undocumented

_catch_all: str = (source)

Undocumented