DBTEAMGroupCreateErrorTag
Objective-C
enum DBTEAMGroupCreateErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMGroupCreateErrorTag : Int, @unchecked Sendable
The DBTEAMGroupCreateErrorTag
enum type represents the possible tag states
with which the DBTEAMGroupCreateError
union can exist.
-
The requested group name is already being used by another group.
Declaration
Objective-C
DBTEAMGroupCreateErrorGroupNameAlreadyUsed
Swift
case groupNameAlreadyUsed = 0
-
Group name is empty or has invalid characters.
Declaration
Objective-C
DBTEAMGroupCreateErrorGroupNameInvalid
Swift
case groupNameInvalid = 1
-
The requested external ID is already being used by another group.
Declaration
Objective-C
DBTEAMGroupCreateErrorExternalIdAlreadyInUse
Swift
case externalIdAlreadyInUse = 2
-
System-managed group cannot be manually created.
Declaration
Objective-C
DBTEAMGroupCreateErrorSystemManagedGroupDisallowed
Swift
case systemManagedGroupDisallowed = 3
-
(no description).
Declaration
Objective-C
DBTEAMGroupCreateErrorOther
Swift
case other = 4