class documentation

class DeleteFileRequestError(FileRequestError): (source)

View In Hierarchy

There was an error deleting these file requests. 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 file_requests.DeleteFileRequestError.file_request_open: One or more file requests currently open.

Method is_file_request_open Check if the union tag is ``file_request_open``.
Class Variable file_request_open Undocumented
Method _process_custom_annotations Undocumented

Inherited from FileRequestError:

Method is_app_lacks_access Check if the union tag is ``app_lacks_access``.
Method is_email_unverified Check if the union tag is ``email_unverified``.
Method is_no_permission Check if the union tag is ``no_permission``.
Method is_not_a_folder Check if the union tag is ``not_a_folder``.
Method is_not_found Check if the union tag is ``not_found``.
Method is_validation_error Check if the union tag is ``validation_error``.
Class Variable app_lacks_access Undocumented
Class Variable email_unverified Undocumented
Class Variable no_permission Undocumented
Class Variable not_a_folder Undocumented
Class Variable not_found Undocumented
Class Variable validation_error Undocumented

Inherited from GeneralFileRequestsError (via FileRequestError):

Method is_disabled_for_team Check if the union tag is ``disabled_for_team``.
Method is_other Check if the union tag is ``other``.
Class Variable disabled_for_team Undocumented
Class Variable other Undocumented
Class Variable _catch_all Undocumented
def is_file_request_open(self): (source)

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

file_request_open = (source)

Undocumented

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