DBTEAMMembersRemoveErrorTag
Objective-C
enum DBTEAMMembersRemoveErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersRemoveErrorTag : Int, @unchecked Sendable
The DBTEAMMembersRemoveErrorTag
enum type represents the possible tag
states with which the DBTEAMMembersRemoveError
union can exist.
-
No matching user found. The provided team_member_id, email, or external_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersRemoveErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersRemoveErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
(no description).
Declaration
Objective-C
DBTEAMMembersRemoveErrorOther
Swift
case other = 2
-
Expected removed user and transfer_dest user to be different.
Declaration
Objective-C
DBTEAMMembersRemoveErrorRemovedAndTransferDestShouldDiffer
Swift
case removedAndTransferDestShouldDiffer = 3
-
Expected removed user and transfer_admin user to be different.
Declaration
Objective-C
DBTEAMMembersRemoveErrorRemovedAndTransferAdminShouldDiffer
Swift
case removedAndTransferAdminShouldDiffer = 4
-
No matching user found for the argument transfer_dest_id.
Declaration
Objective-C
DBTEAMMembersRemoveErrorTransferDestUserNotFound
Swift
case transferDestUserNotFound = 5
-
The provided transfer_dest_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersRemoveErrorTransferDestUserNotInTeam
Swift
case transferDestUserNotInTeam = 6
-
The provided transfer_admin_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersRemoveErrorTransferAdminUserNotInTeam
Swift
case transferAdminUserNotInTeam = 7
-
No matching user found for the argument transfer_admin_id.
Declaration
Objective-C
DBTEAMMembersRemoveErrorTransferAdminUserNotFound
Swift
case transferAdminUserNotFound = 8
-
The transfer_admin_id argument must be provided when file transfer is requested.
Declaration
Objective-C
DBTEAMMembersRemoveErrorUnspecifiedTransferAdminId
Swift
case unspecifiedTransferAdminId = 9
-
Specified transfer_admin user is not a team admin.
Declaration
Objective-C
DBTEAMMembersRemoveErrorTransferAdminIsNotAdmin
Swift
case transferAdminIsNotAdmin = 10
-
The recipient user’s email is not verified.
Declaration
Objective-C
DBTEAMMembersRemoveErrorRecipientNotVerified
Swift
case recipientNotVerified = 11
-
The user is the last admin of the team, so it cannot be removed from it.
Declaration
Objective-C
DBTEAMMembersRemoveErrorRemoveLastAdmin
Swift
case removeLastAdmin = 12
-
Cannot keep account and transfer the data to another user at the same time.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotKeepAccountAndTransfer
Swift
case cannotKeepAccountAndTransfer = 13
-
Cannot keep account and delete the data at the same time. To keep the account the argument wipe_data should be set to false.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotKeepAccountAndDeleteData
Swift
case cannotKeepAccountAndDeleteData = 14
-
The email address of the user is too long to be disabled.
Declaration
Objective-C
DBTEAMMembersRemoveErrorEmailAddressTooLongToBeDisabled
Swift
case emailAddressTooLongToBeDisabled = 15
-
Cannot keep account of an invited user.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotKeepInvitedUserAccount
Swift
case cannotKeepInvitedUserAccount = 16
-
Cannot retain team shares when the user’s data is marked for deletion on their linked devices. The argument wipe_data should be set to false.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotRetainSharesWhenDataWiped
Swift
case cannotRetainSharesWhenDataWiped = 17
-
The user’s account must be kept in order to retain team shares. The argument keep_account should be set to true.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotRetainSharesWhenNoAccountKept
Swift
case cannotRetainSharesWhenNoAccountKept = 18
-
Externally sharing files, folders, and links must be enabled in team settings in order to retain team shares for the user.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotRetainSharesWhenTeamExternalSharingOff
Swift
case cannotRetainSharesWhenTeamExternalSharingOff = 19
-
Only a team admin, can convert this account to a Basic account.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotKeepAccount
Swift
case cannotKeepAccount = 20
-
This user content is currently being held. To convert this member’s account to a Basic account, you’ll first need to remove them from the hold.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotKeepAccountUnderLegalHold
Swift
case cannotKeepAccountUnderLegalHold = 21
-
To convert this member to a Basic account, they’ll first need to sign in to Dropbox and agree to the terms of service.
Declaration
Objective-C
DBTEAMMembersRemoveErrorCannotKeepAccountRequiredToSignTos
Swift
case cannotKeepAccountRequiredToSignTos = 22