class documentation

class TeamFolderStatus(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.TeamFolderStatus.active: The team folder and sub-folders are available to all members. :ivar team.TeamFolderStatus.archived: The team folder is not accessible outside of the team folder manager. :ivar team.TeamFolderStatus.archive_in_progress: The team folder is not accessible outside of the team folder manager.

Method is_active Check if the union tag is ``active``.
Method is_archive_in_progress Check if the union tag is ``archive_in_progress``.
Method is_archived Check if the union tag is ``archived``.
Method is_other Check if the union tag is ``other``.
Class Variable active Undocumented
Class Variable archive_in_progress Undocumented
Class Variable archived Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_active(self): (source)

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

def is_archive_in_progress(self): (source)

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

def is_archived(self): (source)

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

def is_other(self): (source)

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

Undocumented

archive_in_progress = (source)

Undocumented

archived = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented