DBASYNCPollErrorTag
Objective-C
enum DBASYNCPollErrorTag : NSInteger {}
Swift
@frozen enum DBASYNCPollErrorTag : Int, @unchecked Sendable
The DBASYNCPollErrorTag enum type represents the possible tag states with
which the DBASYNCPollError union can exist.
-
The job ID is invalid.
Declaration
Objective-C
DBASYNCPollErrorInvalidAsyncJobIdSwift
case invalidAsyncJobId = 0 -
Something went wrong with the job on Dropbox’s end. You’ll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.
Declaration
Objective-C
DBASYNCPollErrorInternalErrorSwift
case internalError = 1 -
(no description).
Declaration
Objective-C
DBASYNCPollErrorOtherSwift
case other = 2
View on GitHub
DBASYNCPollErrorTag Enumeration Reference