class documentation

class MemberRemoveActionType(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_delete Check if the union tag is ``delete``.
Method is_leave Check if the union tag is ``leave``.
Method is_offboard Check if the union tag is ``offboard``.
Method is_offboard_and_retain_team_folders Check if the union tag is ``offboard_and_retain_team_folders``.
Method is_other Check if the union tag is ``other``.
Class Variable delete Undocumented
Class Variable leave Undocumented
Class Variable offboard Undocumented
Class Variable offboard_and_retain_team_folders Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_delete(self): (source)

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

def is_leave(self): (source)

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

def is_offboard(self): (source)

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

def is_offboard_and_retain_team_folders(self): (source)

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

def is_other(self): (source)

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

Undocumented

Undocumented

offboard = (source)

Undocumented

offboard_and_retain_team_folders = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented