-
- All Implemented Interfaces:
public interface CallNotificationResultThe CallNotificationResult is used to indicate the result of a relayed push notification and includes call related information.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetCallId()Returns the call identifier. abstract StringgetRemoteUserId()Returns the remote user identifier. abstract StringgetDisplayName()Returns the display name of the user calling, if available. abstract BooleanisVideoOffered()Returns whether the caller offered video. abstract Map<String, String>getCallHeaders()Returns public headers associated with the call or empty map if no headers were set by the call initiator. abstract BooleanisTimedOut()Indicates whether the call has timed out. abstract StringgetDomain()Returns the domain associated with the call. -
-
Method Detail
-
getRemoteUserId
abstract String getRemoteUserId()
Returns the remote user identifier.
-
getDisplayName
abstract String getDisplayName()
Returns the display name of the user calling, if available.
-
isVideoOffered
abstract Boolean isVideoOffered()
Returns whether the caller offered video.
-
getCallHeaders
abstract Map<String, String> getCallHeaders()
Returns public headers associated with the call or empty map if no headers were set by the call initiator.
-
isTimedOut
abstract Boolean isTimedOut()
Indicates whether the call has timed out.
-
-
-
-