Class CallReceivedEvent


  • public class CallReceivedEvent
    extends java.lang.Object
    The device is receiving an inbound call request.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String callId
      The ID of this new call.
      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 onnet
      Whether or not the other party is a Relay-hosted device.
      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 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".
      • startTimeEpoch

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

      • CallReceivedEvent

        public CallReceivedEvent()