DBAUTHAuthErrorTag
Objective-C
enum DBAUTHAuthErrorTag : NSInteger {}
Swift
@frozen enum DBAUTHAuthErrorTag : Int, @unchecked Sendable
The DBAUTHAuthErrorTag enum type represents the possible tag states with
which the DBAUTHAuthError union can exist.
-
The access token is invalid.
Declaration
Objective-C
DBAUTHAuthErrorInvalidAccessTokenSwift
case invalidAccessToken = 0 -
The user specified in ‘Dropbox-API-Select-User’ is no longer on the team.
Declaration
Objective-C
DBAUTHAuthErrorInvalidSelectUserSwift
case invalidSelectUser = 1 -
The user specified in ‘Dropbox-API-Select-Admin’ is not a Dropbox Business team admin.
Declaration
Objective-C
DBAUTHAuthErrorInvalidSelectAdminSwift
case invalidSelectAdmin = 2 -
The user has been suspended.
Declaration
Objective-C
DBAUTHAuthErrorUserSuspendedSwift
case userSuspended = 3 -
The access token has expired.
Declaration
Objective-C
DBAUTHAuthErrorExpiredAccessTokenSwift
case expiredAccessToken = 4 -
The access token does not have the required scope to access the route.
Declaration
Objective-C
DBAUTHAuthErrorMissingScopeSwift
case missingScope = 5 -
The route is not available to public.
Declaration
Objective-C
DBAUTHAuthErrorRouteAccessDeniedSwift
case routeAccessDenied = 6 -
(no description).
Declaration
Objective-C
DBAUTHAuthErrorOtherSwift
case other = 7
View on GitHub
DBAUTHAuthErrorTag Enumeration Reference