class documentation

class LegalHoldsListHeldRevisionsContinueError(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.LegalHoldsListHeldRevisionsContinueError.unknown_legal_hold_error: There has been an unknown legal hold error. :ivar team.LegalHoldsListHeldRevisionsContinueError.transient_error: Temporary infrastructure failure, please retry. :ivar team.LegalHoldsListHeldRevisionsContinueError.reset: Indicates that the cursor has been invalidated. Call :meth:`dropbox.dropbox_client.Dropbox.team_legal_holds_list_held_revisions_continue` again with an empty cursor to obtain a new cursor.

Method is_other Check if the union tag is ``other``.
Method is_reset Check if the union tag is ``reset``.
Method is_transient_error Check if the union tag is ``transient_error``.
Method is_unknown_legal_hold_error Check if the union tag is ``unknown_legal_hold_error``.
Class Variable other Undocumented
Class Variable reset Undocumented
Class Variable transient_error Undocumented
Class Variable unknown_legal_hold_error Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_other(self): (source)

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

def is_reset(self): (source)

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

def is_transient_error(self): (source)

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

def is_unknown_legal_hold_error(self): (source)

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

Undocumented

Undocumented

transient_error = (source)

Undocumented

unknown_legal_hold_error = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented