class documentation

There is an error with the file request. 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.FileRequestError.not_found: This file request ID was not found. :ivar file_requests.FileRequestError.not_a_folder: The specified path is not a folder. :ivar file_requests.FileRequestError.app_lacks_access: This file request is not accessible to this app. Apps with the app folder permission can only access file requests in their app folder. :ivar file_requests.FileRequestError.no_permission: This user doesn't have permission to access or modify this file request. :ivar file_requests.FileRequestError.email_unverified: This user's email address is not verified. File requests are only available on accounts with a verified email address. Users can verify their email address `here <https://www.dropbox.com/help/317>`_. :ivar file_requests.FileRequestError.validation_error: There was an error validating the request. For example, the title was invalid, or there were disallowed characters in the destination path.

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
Method _process_custom_annotations Undocumented

Inherited from GeneralFileRequestsError:

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_app_lacks_access(self): (source)

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

def is_email_unverified(self): (source)

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

def is_no_permission(self): (source)

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

def is_not_a_folder(self): (source)

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

def is_not_found(self): (source)

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

def is_validation_error(self): (source)

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

app_lacks_access = (source)

Undocumented

email_unverified = (source)

Undocumented

no_permission = (source)

Undocumented

not_a_folder = (source)

Undocumented

not_found = (source)

Undocumented

validation_error = (source)

Undocumented