DBTEAMGroupUpdateErrorTag
Objective-C
enum DBTEAMGroupUpdateErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMGroupUpdateErrorTag : Int, @unchecked Sendable
The DBTEAMGroupUpdateErrorTag
enum type represents the possible tag states
with which the DBTEAMGroupUpdateError
union can exist.
-
No matching group found. No groups match the specified group ID.
Declaration
Objective-C
DBTEAMGroupUpdateErrorGroupNotFound
Swift
case groupNotFound = 0
-
(no description).
Declaration
Objective-C
DBTEAMGroupUpdateErrorOther
Swift
case other = 1
-
This operation is not supported on system-managed groups.
Declaration
Objective-C
DBTEAMGroupUpdateErrorSystemManagedGroupDisallowed
Swift
case systemManagedGroupDisallowed = 2
-
The requested group name is already being used by another group.
Declaration
Objective-C
DBTEAMGroupUpdateErrorGroupNameAlreadyUsed
Swift
case groupNameAlreadyUsed = 3
-
Group name is empty or has invalid characters.
Declaration
Objective-C
DBTEAMGroupUpdateErrorGroupNameInvalid
Swift
case groupNameInvalid = 4
-
The requested external ID is already being used by another group.
Declaration
Objective-C
DBTEAMGroupUpdateErrorExternalIdAlreadyInUse
Swift
case externalIdAlreadyInUse = 5