DBTEAMMembersSetProfilePhotoErrorTag
Objective-C
enum DBTEAMMembersSetProfilePhotoErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersSetProfilePhotoErrorTag : Int, @unchecked Sendable
The DBTEAMMembersSetProfilePhotoErrorTag
enum type represents the possible
tag states with which the DBTEAMMembersSetProfilePhotoError
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
DBTEAMMembersSetProfilePhotoErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersSetProfilePhotoErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
Modifying deleted users is not allowed.
Declaration
Objective-C
DBTEAMMembersSetProfilePhotoErrorSetProfileDisallowed
Swift
case setProfileDisallowed = 2
-
(no description).
Declaration
Objective-C
DBTEAMMembersSetProfilePhotoErrorPhotoError
Swift
case photoError = 3
-
(no description).
Declaration
Objective-C
DBTEAMMembersSetProfilePhotoErrorOther
Swift
case other = 4