DBAUTHRateLimitReasonTag

Objective-C

enum DBAUTHRateLimitReasonTag : NSInteger {}

Swift

@frozen enum DBAUTHRateLimitReasonTag : Int, @unchecked Sendable

The DBAUTHRateLimitReasonTag enum type represents the possible tag states with which the DBAUTHRateLimitReason union can exist.

  • You are making too many requests in the past few minutes.

    Declaration

    Objective-C

    DBAUTHRateLimitReasonTooManyRequests

    Swift

    case tooManyRequests = 0
  • There are currently too many write operations happening in the user’s Dropbox.

    Declaration

    Objective-C

    DBAUTHRateLimitReasonTooManyWriteOperations

    Swift

    case tooManyWriteOperations = 1
  • (no description).

    Declaration

    Objective-C

    DBAUTHRateLimitReasonOther

    Swift

    case other = 2