DBTEAMMembersSetProfileErrorTag
Objective-C
enum DBTEAMMembersSetProfileErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersSetProfileErrorTag : Int, @unchecked Sendable
The DBTEAMMembersSetProfileErrorTag
enum type represents the possible tag
states with which the DBTEAMMembersSetProfileError
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
DBTEAMMembersSetProfileErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
It is unsafe to use both external_id and new_external_id.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorExternalIdAndNewExternalIdUnsafe
Swift
case externalIdAndNewExternalIdUnsafe = 2
-
None of new_email, new_given_name, new_surname, or new_external_id are specified.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorNoNewDataSpecified
Swift
case noNewDataSpecified = 3
-
Email is already reserved for another user.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorEmailReservedForOtherUser
Swift
case emailReservedForOtherUser = 4
-
The external ID is already in use by another team member.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorExternalIdUsedByOtherUser
Swift
case externalIdUsedByOtherUser = 5
-
Modifying deleted users is not allowed.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorSetProfileDisallowed
Swift
case setProfileDisallowed = 6
-
Parameter new_email cannot be empty.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorParamCannotBeEmpty
Swift
case paramCannotBeEmpty = 7
-
Persistent ID is only available to teams with persistent ID SAML configuration. Please contact Dropbox for more information.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorPersistentIdDisabled
Swift
case persistentIdDisabled = 8
-
The persistent ID is already in use by another team member.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorPersistentIdUsedByOtherUser
Swift
case persistentIdUsedByOtherUser = 9
-
Directory Restrictions option is not available.
Declaration
Objective-C
DBTEAMMembersSetProfileErrorDirectoryRestrictedOff
Swift
case directoryRestrictedOff = 10
-
(no description).
Declaration
Objective-C
DBTEAMMembersSetProfileErrorOther
Swift
case other = 11