CallParticipantState
@objc(BDKCallParticipantState)
public enum CallParticipantState : Int
An enumeration representing the states a participant can be in, during a call.
-
Participant state is unknown.
Declaration
Swift
case unknown = -1 -
Participant has been invited to the call, and he/she hasn’t answered or declined the call yet.
Declaration
Swift
case invited -
Participant has answered.
Declaration
Swift
case answered -
Participant has declined.
Declaration
Swift
case declined -
Participant has declined because of do not disturb.
Declaration
Swift
case declinedByDoNotDisturb -
Participant has declined because of no answer.
Declaration
Swift
case noAnswer -
Participant has disconnected.
Declaration
Swift
case disconnected -
Participant timed out connecting to the call, and became unavailable.
Declaration
Swift
case timedOut -
Participant is in an error state.
Declaration
Swift
case error
View on GitHub
CallParticipantState Enumeration Reference