DBTEAMGroupMembersAddErrorTag

Objective-C

enum DBTEAMGroupMembersAddErrorTag : NSInteger {}

Swift

@frozen enum DBTEAMGroupMembersAddErrorTag : Int, @unchecked Sendable

The DBTEAMGroupMembersAddErrorTag enum type represents the possible tag states with which the DBTEAMGroupMembersAddError union can exist.

  • No matching group found. No groups match the specified group ID.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorGroupNotFound

    Swift

    case groupNotFound = 0
  • (no description).

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorOther

    Swift

    case other = 1
  • This operation is not supported on system-managed groups.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorSystemManagedGroupDisallowed

    Swift

    case systemManagedGroupDisallowed = 2
  • You cannot add duplicate users. One or more of the members you are trying to add is already a member of the group.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorDuplicateUser

    Swift

    case duplicateUser = 3
  • Group is not in this team. You cannot add members to a group that is outside of your team.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorGroupNotInTeam

    Swift

    case groupNotInTeam = 4
  • These members are not part of your team. Currently, you cannot add members to a group if they are not part of your team, though this may change in a subsequent version. To add new members to your Dropbox Business team, use the membersAdd endpoint.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorMembersNotInTeam

    Swift

    case membersNotInTeam = 5
  • These users were not found in Dropbox.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorUsersNotFound

    Swift

    case usersNotFound = 6
  • A suspended user cannot be added to a group as owner in DBTEAMGroupAccessType.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorUserMustBeActiveToBeOwner

    Swift

    case userMustBeActiveToBeOwner = 7
  • A company-managed group cannot be managed by a user.

    Declaration

    Objective-C

    DBTEAMGroupMembersAddErrorUserCannotBeManagerOfCompanyManagedGroup

    Swift

    case userCannotBeManagerOfCompanyManagedGroup = 8