DBTEAMMemberSelectorErrorTag

Objective-C

enum DBTEAMMemberSelectorErrorTag : NSInteger {}

Swift

@frozen enum DBTEAMMemberSelectorErrorTag : Int, @unchecked Sendable

The DBTEAMMemberSelectorErrorTag enum type represents the possible tag states with which the DBTEAMMemberSelectorError 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

    DBTEAMMemberSelectorErrorUserNotFound

    Swift

    case userNotFound = 0
  • The user is not a member of the team.

    Declaration

    Objective-C

    DBTEAMMemberSelectorErrorUserNotInTeam

    Swift

    case userNotInTeam = 1