Class CallFailedEvent


  • public class CallFailedEvent
    extends java.lang.Object
    A call attempt has failed to become connected.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String callId
      The ID of this new call.
      java.lang.String connectTimeEpoch
      A timestamp of when the call was connected, in epoch seconds.
      java.lang.String deviceId
      The ID of the other device.
      java.lang.String deviceName
      The name of the other device.
      java.lang.String direction
      Call direction relative to this device: inbound or outbound.
      java.lang.String endTimeEpoch
      A timestamp of when the call was disconnected, in epoch seconds.
      java.lang.String onnet
      Whether or not the other party is a Relay-hosted device.
      java.lang.String reason
      The reason discovered for failure of this call.
      java.lang.String startTimeEpoch
      A timestamp of when the call was requested, in epoch seconds.
      java.lang.String uri
      A SIP-style URI of the other device.
    • Constructor Summary

      Constructors 
      Constructor Description
      CallFailedEvent()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • callId

        @SerializedName("call_id")
        public java.lang.String callId
        The ID of this new call.
      • direction

        @SerializedName("direction")
        public java.lang.String direction
        Call direction relative to this device: inbound or outbound.
      • deviceId

        @SerializedName("device_id")
        public java.lang.String deviceId
        The ID of the other device.
      • deviceName

        @SerializedName("device_name")
        public java.lang.String deviceName
        The name of the other device.
      • uri

        @SerializedName("uri")
        public java.lang.String uri
        A SIP-style URI of the other device. Not currently supported.
      • onnet

        @SerializedName("onnet")
        public java.lang.String onnet
        Whether or not the other party is a Relay-hosted device. "True" or "False".
      • reason

        @SerializedName("reason")
        public java.lang.String reason
        The reason discovered for failure of this call.
      • startTimeEpoch

        @SerializedName("start_time_epoch")
        public java.lang.String startTimeEpoch
        A timestamp of when the call was requested, in epoch seconds.
      • connectTimeEpoch

        @SerializedName("connect_time_epoch")
        public java.lang.String connectTimeEpoch
        A timestamp of when the call was connected, in epoch seconds.
      • endTimeEpoch

        @SerializedName("end_time_epoch")
        public java.lang.String endTimeEpoch
        A timestamp of when the call was disconnected, in epoch seconds.
    • Constructor Detail

      • CallFailedEvent

        public CallFailedEvent()