class documentation

class TeamFolderAccessError(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.TeamFolderAccessError.invalid_team_folder_id: The team folder ID is invalid. :ivar team.TeamFolderAccessError.no_access: The authenticated app does not have permission to manage that team folder.

Method is_invalid_team_folder_id Check if the union tag is ``invalid_team_folder_id``.
Method is_no_access Check if the union tag is ``no_access``.
Method is_other Check if the union tag is ``other``.
Class Variable invalid_team_folder_id Undocumented
Class Variable no_access Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_invalid_team_folder_id(self): (source)

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

def is_no_access(self): (source)

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

def is_other(self): (source)

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

invalid_team_folder_id = (source)

Undocumented

no_access = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented