BDKCallParticipantState

Objective-C

enum BDKCallParticipantState : NSInteger {}

Swift

enum CallParticipantState : Int

An enumeration representing the states a participant can be in, during a call.

  • Participant state is unknown.

    Declaration

    Objective-C

    BDKCallParticipantStateUnknown = -1

    Swift

    case unknown = -1
  • Participant has been invited to the call, and he/she hasn’t answered or declined the call yet.

    Declaration

    Objective-C

    BDKCallParticipantStateInvited

    Swift

    case invited = 0
  • Participant has answered.

    Declaration

    Objective-C

    BDKCallParticipantStateAnswered

    Swift

    case answered = 1
  • Participant has declined.

    Declaration

    Objective-C

    BDKCallParticipantStateDeclined

    Swift

    case declined = 2
  • Participant has declined because of do not disturb.

    Declaration

    Objective-C

    BDKCallParticipantStateDeclinedByDoNotDisturb

    Swift

    case declinedByDoNotDisturb = 3
  • Participant has declined because of no answer.

    Declaration

    Objective-C

    BDKCallParticipantStateNoAnswer

    Swift

    case noAnswer = 4
  • Participant has disconnected.

    Declaration

    Objective-C

    BDKCallParticipantStateDisconnected

    Swift

    case disconnected = 5
  • Participant timed out connecting to the call, and became unavailable.

    Declaration

    Objective-C

    BDKCallParticipantStateTimedOut

    Swift

    case timedOut = 6
  • Participant is in an error state.

    Declaration

    Objective-C

    BDKCallParticipantStateError

    Swift

    case error = 7