DBFILESUploadErrorTag

Objective-C

enum DBFILESUploadErrorTag : NSInteger {}

Swift

@frozen enum DBFILESUploadErrorTag : Int, @unchecked Sendable

The DBFILESUploadErrorTag enum type represents the possible tag states with which the DBFILESUploadError union can exist.

  • Unable to save the uploaded contents to a file.

    Declaration

    Objective-C

    DBFILESUploadErrorPath

    Swift

    case path = 0
  • The supplied property group is invalid. The file has uploaded without property groups.

    Declaration

    Objective-C

    DBFILESUploadErrorPropertiesError

    Swift

    case propertiesError = 1
  • The request payload must be at most 150 MB.

    Declaration

    Objective-C

    DBFILESUploadErrorPayloadTooLarge

    Swift

    case payloadTooLarge = 2
  • The content received by the Dropbox server in this call does not match the provided content hash.

    Declaration

    Objective-C

    DBFILESUploadErrorContentHashMismatch

    Swift

    case contentHashMismatch = 3
  • (no description).

    Declaration

    Objective-C

    DBFILESUploadErrorOther

    Swift

    case other = 4