ShareFolderError

public enum ShareFolderError : CustomStringConvertible, JSONRepresentable

The ShareFolderError union

  • This user’s email address is not verified. This functionality is 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
  • path in ShareFolderArg is invalid.

    Declaration

    Swift

    case badPath(Sharing.SharePathError)
  • Team policy is more restrictive than memberPolicy in ShareFolderArg.

    Declaration

    Swift

    case teamPolicyDisallowsMemberPolicy
  • The current user’s account is not allowed to select the specified sharedLinkPolicy in ShareFolderArg.

    Declaration

    Swift

    case disallowedSharedLinkPolicy
  • An unspecified error.

    Declaration

    Swift

    case other
  • The current user does not have permission to perform this action.

    Declaration

    Swift

    case noPermission
  • Declaration

    Swift

    public var description: String { get }