class documentation

class MemberSendInvitePolicy(bb.Union): (source)

View In Hierarchy

Policy for controlling whether team members can send team invites 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_disabled Check if the union tag is ``disabled``.
Method is_everyone Check if the union tag is ``everyone``.
Method is_other Check if the union tag is ``other``.
Method is_specific_members Check if the union tag is ``specific_members``.
Class Variable disabled Undocumented
Class Variable everyone Undocumented
Class Variable other Undocumented
Class Variable specific_members Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_disabled(self): (source)

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

def is_everyone(self): (source)

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

def is_other(self): (source)

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

def is_specific_members(self): (source)

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

disabled = (source)

Undocumented

everyone = (source)

Undocumented

Undocumented

specific_members = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented