class documentation

class TeamMembershipType(bb.Union): (source)

View In Hierarchy

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.TeamMembershipType.full: User uses a license and has full access to team resources like the shared quota. :ivar team.TeamMembershipType.limited: User does not have access to the shared quota and team admins have restricted administrative control.

Method is_full Check if the union tag is ``full``.
Method is_limited Check if the union tag is ``limited``.
Class Variable full Undocumented
Class Variable limited Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_full(self): (source)

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

def is_limited(self): (source)

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

Undocumented

Undocumented

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

Undocumented

_catch_all = (source)

Undocumented