Package com.relaypro.sdk.types
Class CallDisconnectedEvent
- java.lang.Object
-
- com.relaypro.sdk.types.CallDisconnectedEvent
-
public class CallDisconnectedEvent extends java.lang.ObjectA call that was once connected has become disconnected.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringcallIdThe ID of this existing call.java.lang.StringconnectTimeEpochA timestamp of when the call was connected, in epoch seconds.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.StringendTimeEpochA timestamp of when the call was disconnected, in epoch seconds.java.lang.StringonnetWhether or not the other party is a Relay-hosted device.java.lang.StringreasonThe reason discovered for disconnection of this call.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 CallDisconnectedEvent()
-
-
-
Field Detail
-
callId
@SerializedName("call_id") public java.lang.String callIdThe ID of this existing 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".
-
reason
@SerializedName("reason") public java.lang.String reasonThe reason discovered for disconnection of this call.
-
startTimeEpoch
@SerializedName("start_time_epoch") public java.lang.String startTimeEpochA timestamp of when the call was requested, in epoch seconds.
-
connectTimeEpoch
@SerializedName("connect_time_epoch") public java.lang.String connectTimeEpochA timestamp of when the call was connected, in epoch seconds.
-
endTimeEpoch
@SerializedName("end_time_epoch") public java.lang.String endTimeEpochA timestamp of when the call was disconnected, in epoch seconds.
-
-