class documentation

class TeamFolderArchiveJobStatus(async_.PollResultBase): (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 TeamFolderMetadata TeamFolderArchiveJobStatus.complete: The archive job has finished. The value is the metadata for the resulting team folder. :ivar TeamFolderArchiveError TeamFolderArchiveJobStatus.failed: Error occurred while performing an asynchronous job from :meth:`dropbox.dropbox_client.Dropbox.team_team_folder_archive`.

Class Method complete Create an instance of this class set to the ``complete`` tag with value ``val``.
Class Method failed Create an instance of this class set to the ``failed`` tag with value ``val``.
Method get_complete The archive job has finished. The value is the metadata for the resulting team folder.
Method get_failed Error occurred while performing an asynchronous job from :meth:`dropbox.dropbox_client.Dropbox.team_team_folder_archive`.
Method is_complete Check if the union tag is ``complete``.
Method is_failed Check if the union tag is ``failed``.
Method _process_custom_annotations Undocumented

Inherited from PollResultBase:

Method is_in_progress Check if the union tag is ``in_progress``.
Class Variable in_progress Undocumented
Class Variable _catch_all Undocumented
@classmethod
def complete(cls, val): (source)

Create an instance of this class set to the ``complete`` tag with value ``val``. :param TeamFolderMetadata val: :rtype: TeamFolderArchiveJobStatus

@classmethod
def failed(cls, val): (source)

Create an instance of this class set to the ``failed`` tag with value ``val``. :param TeamFolderArchiveError val: :rtype: TeamFolderArchiveJobStatus

def get_complete(self): (source)

The archive job has finished. The value is the metadata for the resulting team folder. Only call this if :meth:`is_complete` is true. :rtype: TeamFolderMetadata

def get_failed(self): (source)

Error occurred while performing an asynchronous job from :meth:`dropbox.dropbox_client.Dropbox.team_team_folder_archive`. Only call this if :meth:`is_failed` is true. :rtype: TeamFolderArchiveError

def is_complete(self): (source)

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

def is_failed(self): (source)

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

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