Class CallDisconnectedEvent


  • public class CallDisconnectedEvent
    extends java.lang.Object
    A call that was once connected has become disconnected.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String callId
      The ID of this existing 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 disconnection 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.
    • 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 existing 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 disconnection 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

      • CallDisconnectedEvent

        public CallDisconnectedEvent()