class documentation

class UploadSessionFinishBatchJobStatus(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 UploadSessionFinishBatchResult UploadSessionFinishBatchJobStatus.complete: The :meth:`dropbox.dropbox_client.Dropbox.files_upload_session_finish_batch` has finished.

Class Method complete Create an instance of this class set to the ``complete`` tag with value ``val``.
Method get_complete The :meth:`dropbox.dropbox_client.Dropbox.files_upload_session_finish_batch` has finished.
Method is_complete Check if the union tag is ``complete``.
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 UploadSessionFinishBatchResult val: :rtype: UploadSessionFinishBatchJobStatus

def get_complete(self): (source)

The :meth:`dropbox.dropbox_client.Dropbox.files_upload_session_finish_batch` has finished. Only call this if :meth:`is_complete` is true. :rtype: UploadSessionFinishBatchResult

def is_complete(self): (source)

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

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