Package com.relaypro.sdk.types
Class CallFailedEvent
- java.lang.Object
-
- com.relaypro.sdk.types.CallFailedEvent
-
public class CallFailedEvent extends java.lang.ObjectA call attempt has failed to become connected.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringcallIdThe ID of this new 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 failure 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 CallFailedEvent()
-
-
-
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".
-
reason
@SerializedName("reason") public java.lang.String reasonThe reason discovered for failure 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.
-
-