class documentation

class TeamFolderArchiveError(BaseTeamFolderError): (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 _process_custom_annotations Undocumented

Inherited from BaseTeamFolderError:

Class Method access_error Create an instance of this class set to the ``access_error`` tag with value ``val``.
Class Method status_error Create an instance of this class set to the ``status_error`` tag with value ``val``.
Class Method team_shared_dropbox_error Create an instance of this class set to the ``team_shared_dropbox_error`` tag with value ``val``.
Method get_access_error Only call this if :meth:`is_access_error` is true.
Method get_status_error Only call this if :meth:`is_status_error` is true.
Method get_team_shared_dropbox_error Only call this if :meth:`is_team_shared_dropbox_error` is true.
Method is_access_error Check if the union tag is ``access_error``.
Method is_other Check if the union tag is ``other``.
Method is_status_error Check if the union tag is ``status_error``.
Method is_team_shared_dropbox_error Check if the union tag is ``team_shared_dropbox_error``.
Class Variable other Undocumented
Class Variable _catch_all Undocumented
def _process_custom_annotations(self, annotation_type, field_path, processor): (source)