FileRequestError

public enum FileRequestError : CustomStringConvertible, JSONRepresentable

There is an error with the file request.

  • This user’s Dropbox Business team doesn’t allow file requests.

    Declaration

    Swift

    case disabledForTeam
  • An unspecified error.

    Declaration

    Swift

    case other
  • This file request ID was not found.

    Declaration

    Swift

    case notFound
  • The specified path is not a folder.

    Declaration

    Swift

    case notAFolder
  • This file request is not accessible to this app. Apps with the app folder permission can only access file requests in their app folder.

    Declaration

    Swift

    case appLacksAccess
  • This user doesn’t have permission to access or modify this file request.

    Declaration

    Swift

    case noPermission
  • 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.

    Declaration

    Swift

    case emailUnverified
  • There was an error validating the request. For example, the title was invalid, or there were disallowed characters in the destination path.

    Declaration

    Swift

    case validationError
  • Declaration

    Swift

    public var description: String { get }