class documentation

class GroupAccessType(bb.Union): (source)

View In Hierarchy

Role of a user in group. 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.GroupAccessType.member: User is a member of the group, but has no special permissions. :ivar team.GroupAccessType.owner: User can rename the group, and add/remove members.

Method is_member Check if the union tag is ``member``.
Method is_owner Check if the union tag is ``owner``.
Class Variable member Undocumented
Class Variable owner Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_member(self): (source)

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

def is_owner(self): (source)

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

Undocumented

Undocumented

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

Undocumented

_catch_all = (source)

Undocumented