Package com.relaypro.sdk.types
Class CallRingingEvent
- java.lang.Object
-
- com.relaypro.sdk.types.CallRingingEvent
-
public class CallRingingEvent extends java.lang.ObjectThe device we called is ringing. We are waiting for them to answer.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringcallIdThe ID of this new call.java.lang.StringdeviceIdThe ID of the other device.java.lang.StringdeviceNameThe name of the other device.java.lang.StringdirectionCall direction relative to this device: inbound or outbound.java.lang.StringonnetWhether or not the other party is a Relay-hosted device.java.lang.StringstartTimeEpochA timestamp of when the call was requested, in epoch seconds.java.lang.StringuriA SIP-style URI of the other device.
-
Constructor Summary
Constructors Constructor Description CallRingingEvent()
-
-
-
Field Detail
-
callId
@SerializedName("call_id") public java.lang.String callIdThe ID of this new call.
-
direction
@SerializedName("direction") public java.lang.String directionCall direction relative to this device: inbound or outbound.
-
deviceId
@SerializedName("device_id") public java.lang.String deviceIdThe ID of the other device.
-
deviceName
@SerializedName("device_name") public java.lang.String deviceNameThe name of the other device.
-
uri
@SerializedName("uri") public java.lang.String uriA SIP-style URI of the other device. Not currently supported.
-
onnet
@SerializedName("onnet") public java.lang.String onnetWhether or not the other party is a Relay-hosted device. "True" or "False".
-
startTimeEpoch
@SerializedName("start_time_epoch") public java.lang.String startTimeEpochA timestamp of when the call was requested, in epoch seconds.
-
-