class documentation

class RelocationBatchError(RelocationError): (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 files.RelocationBatchError.too_many_write_operations: There are too many write operations in user's Dropbox. Please retry this request.

Method is_too_many_write_operations Check if the union tag is ``too_many_write_operations``.
Class Variable too_many_write_operations Undocumented
Method _process_custom_annotations Undocumented

Inherited from RelocationError:

Class Method cant_move_into_family Create an instance of this class set to the ``cant_move_into_family`` tag with value ``val``.
Class Method cant_move_into_vault Create an instance of this class set to the ``cant_move_into_vault`` tag with value ``val``.
Class Method from_lookup Create an instance of this class set to the ``from_lookup`` tag with value ``val``.
Class Method from_write Create an instance of this class set to the ``from_write`` tag with value ``val``.
Class Method to Create an instance of this class set to the ``to`` tag with value ``val``.
Method get_cant_move_into_family Some content cannot be moved into the Family Room folder under certain circumstances, see detailed error.
Method get_cant_move_into_vault Some content cannot be moved into Vault under certain circumstances, see detailed error.
Method get_from_lookup Only call this if :meth:`is_from_lookup` is true.
Method get_from_write Only call this if :meth:`is_from_write` is true.
Method get_to Only call this if :meth:`is_to` is true.
Method is_cant_copy_shared_folder Check if the union tag is ``cant_copy_shared_folder``.
Method is_cant_move_folder_into_itself Check if the union tag is ``cant_move_folder_into_itself``.
Method is_cant_move_into_family Check if the union tag is ``cant_move_into_family``.
Method is_cant_move_into_vault Check if the union tag is ``cant_move_into_vault``.
Method is_cant_move_shared_folder Check if the union tag is ``cant_move_shared_folder``.
Method is_cant_nest_shared_folder Check if the union tag is ``cant_nest_shared_folder``.
Method is_cant_transfer_ownership Check if the union tag is ``cant_transfer_ownership``.
Method is_duplicated_or_nested_paths Check if the union tag is ``duplicated_or_nested_paths``.
Method is_from_lookup Check if the union tag is ``from_lookup``.
Method is_from_write Check if the union tag is ``from_write``.
Method is_insufficient_quota Check if the union tag is ``insufficient_quota``.
Method is_internal_error Check if the union tag is ``internal_error``.
Method is_other Check if the union tag is ``other``.
Method is_to Check if the union tag is ``to``.
Method is_too_many_files Check if the union tag is ``too_many_files``.
Class Variable cant_copy_shared_folder Undocumented
Class Variable cant_move_folder_into_itself Undocumented
Class Variable cant_move_shared_folder Undocumented
Class Variable cant_nest_shared_folder Undocumented
Class Variable cant_transfer_ownership Undocumented
Class Variable duplicated_or_nested_paths Undocumented
Class Variable insufficient_quota Undocumented
Class Variable internal_error Undocumented
Class Variable other Undocumented
Class Variable too_many_files Undocumented
Class Variable _catch_all Undocumented
def is_too_many_write_operations(self): (source)

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

too_many_write_operations = (source)

Undocumented

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