Status
public enum Status : Int
Enum representing the status of a call.
-
The call was sucessful.
Declaration
Swift
case Success = 0 -
The call was aborted (caller hanged up)
Declaration
Swift
case Aborted = 1 -
The call was missed (incoming call timed out without being answered or hanged up)
Declaration
Swift
case Missed = 2 -
The call was declined, either locally or by remote end.
Declaration
Swift
case Declined = 3 -
The call was aborted before being advertised to the application - for protocol reasons.
Declaration
Swift
case EarlyAborted = 4 -
The call was answered on another device.
Declaration
Swift
case AcceptedElsewhere = 5 -
The call was declined on another device.
Declaration
Swift
case DeclinedElsewhere = 6
Status Enumeration Reference