DBTEAMMembersDeleteProfilePhotoErrorTag
Objective-C
enum DBTEAMMembersDeleteProfilePhotoErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersDeleteProfilePhotoErrorTag : Int, @unchecked Sendable
The DBTEAMMembersDeleteProfilePhotoErrorTag
enum type represents the
possible tag states with which the DBTEAMMembersDeleteProfilePhotoError
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
DBTEAMMembersDeleteProfilePhotoErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersDeleteProfilePhotoErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
Modifying deleted users is not allowed.
Declaration
Objective-C
DBTEAMMembersDeleteProfilePhotoErrorSetProfileDisallowed
Swift
case setProfileDisallowed = 2
-
(no description).
Declaration
Objective-C
DBTEAMMembersDeleteProfilePhotoErrorOther
Swift
case other = 3