CallEndReason
@available(iOS 12.0, *)
@objc(BDKCallEndReason)
public enum CallEndReason : Int, CustomStringConvertible
An enumeration representing the possible call end reasons.
-
Call has ended but the reason is unknown.
Declaration
Swift
case unknown = -1 -
Call is not ended.
Declaration
Swift
case none -
Call has been hung up.
Declaration
Swift
case hangUp -
Call has been declined.
Declaration
Swift
case declined -
Call has been answered or declined on another device.
Declaration
Swift
case answeredOnAnotherDevice -
Call has ended because the opponent has disconnected.
Declaration
Swift
case userDisconnected -
Call has ended because the opponent did not join the room in time.
Declaration
Swift
case timedOut -
Call has ended because of an error.
Declaration
Swift
case error
View on GitHub
CallEndReason Enumeration Reference