BCXCallParticipantState
Objective-C
enum BCXCallParticipantState {}
Swift
enum BCXCallParticipantState : Int
An enumeration representing the states a participant can be in, during a call.
-
Participant state is unknown.
Declaration
Objective-C
BCXCallParticipantStateUnknown = -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
BCXCallParticipantStateInvited
Swift
case invited = 0
-
Participant has answered.
Declaration
Objective-C
BCXCallParticipantStateAnswered
Swift
case answered = 1
-
Participant has declined.
Declaration
Objective-C
BCXCallParticipantStateDeclined
Swift
case declined = 2
-
Participant has declined because of do not disturb.
Declaration
Objective-C
BCXCallParticipantStateDeclinedByDoNotDisturb
Swift
case declinedByDoNotDisturb = 3
-
Participant has declined because of no answer.
Declaration
Objective-C
BCXCallParticipantStateNoAnswer
Swift
case noAnswer = 4
-
Participant has disconnected.
Declaration
Objective-C
BCXCallParticipantStateDisconnected
Swift
case disconnected = 5
-
Participant timed out connecting to the call, and became unavailable.
Declaration
Objective-C
BCXCallParticipantStateTimedOut
Swift
case timedOut = 6
-
Participant is in an error state.
Declaration
Objective-C
BCXCallParticipantStateError
Swift
case error = 7