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

    DBASYNCPollErrorInvalidAsyncJobId

    Swift

    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

    DBASYNCPollErrorInternalError

    Swift

    case internalError = 1
  • (no description).

    Declaration

    Objective-C

    DBASYNCPollErrorOther

    Swift

    case other = 2