class documentation

class InviteMethod(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.

Method is_auto_approve Check if the union tag is ``auto_approve``.
Method is_invite_link Check if the union tag is ``invite_link``.
Method is_member_invite Check if the union tag is ``member_invite``.
Method is_moved_from_another_team Check if the union tag is ``moved_from_another_team``.
Method is_other Check if the union tag is ``other``.
Class Variable auto_approve Undocumented
Class Variable invite_link Undocumented
Class Variable member_invite Undocumented
Class Variable moved_from_another_team Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_auto_approve(self): (source)

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

def is_invite_link(self): (source)

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

def is_member_invite(self): (source)

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

def is_moved_from_another_team(self): (source)

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

def is_other(self): (source)

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

auto_approve = (source)

Undocumented

invite_link = (source)

Undocumented

member_invite = (source)

Undocumented

moved_from_another_team = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented