DBFILESUploadSessionFinishErrorTag
Objective-C
enum DBFILESUploadSessionFinishErrorTag : NSInteger {}
Swift
@frozen enum DBFILESUploadSessionFinishErrorTag : Int, @unchecked Sendable
The DBFILESUploadSessionFinishErrorTag
enum type represents the possible
tag states with which the DBFILESUploadSessionFinishError
union can exist.
-
The session arguments are incorrect; the value explains the reason.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorLookupFailed
Swift
case lookupFailed = 0
-
Unable to save the uploaded contents to a file. Data has already been appended to the upload session. Please retry with empty data body and updated offset.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorPath
Swift
case path = 1
-
The supplied property group is invalid. The file has uploaded without property groups.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorPropertiesError
Swift
case propertiesError = 2
-
The batch request commits files into too many different shared folders. Please limit your batch request to files contained in a single shared folder.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorTooManySharedFolderTargets
Swift
case tooManySharedFolderTargets = 3
-
There are too many write operations happening in the user’s Dropbox. You should retry uploading this file.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorTooManyWriteOperations
Swift
case tooManyWriteOperations = 4
-
Uploading data not allowed when finishing concurrent upload session.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorConcurrentSessionDataNotAllowed
Swift
case concurrentSessionDataNotAllowed = 5
-
Concurrent upload sessions need to be closed before finishing.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorConcurrentSessionNotClosed
Swift
case concurrentSessionNotClosed = 6
-
Not all pieces of data were uploaded before trying to finish the session.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorConcurrentSessionMissingData
Swift
case concurrentSessionMissingData = 7
-
The request payload must be at most 150 MB.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorPayloadTooLarge
Swift
case payloadTooLarge = 8
-
The content received by the Dropbox server in this call does not match the provided content hash.
Declaration
Objective-C
DBFILESUploadSessionFinishErrorContentHashMismatch
Swift
case contentHashMismatch = 9
-
(no description).
Declaration
Objective-C
DBFILESUploadSessionFinishErrorOther
Swift
case other = 10