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 = -1Swift
case unknown = -1 -
Participant has been invited to the call, and he/she hasn’t answered or declined the call yet.
Declaration
Objective-C
BCXCallParticipantStateInvitedSwift
case invited = 0 -
Participant has answered.
Declaration
Objective-C
BCXCallParticipantStateAnsweredSwift
case answered = 1 -
Participant has declined.
Declaration
Objective-C
BCXCallParticipantStateDeclinedSwift
case declined = 2 -
Participant has declined because of do not disturb.
Declaration
Objective-C
BCXCallParticipantStateDeclinedByDoNotDisturbSwift
case declinedByDoNotDisturb = 3 -
Participant has declined because of no answer.
Declaration
Objective-C
BCXCallParticipantStateNoAnswerSwift
case noAnswer = 4 -
Participant has disconnected.
Declaration
Objective-C
BCXCallParticipantStateDisconnectedSwift
case disconnected = 5 -
Participant timed out connecting to the call, and became unavailable.
Declaration
Objective-C
BCXCallParticipantStateTimedOutSwift
case timedOut = 6 -
Participant is in an error state.
Declaration
Objective-C
BCXCallParticipantStateErrorSwift
case error = 7
View on GitHub
BCXCallParticipantState Enumeration Reference