Package com.sinch.android.rtc.calling
Interface CallNotificationResult
-
- All Implemented Interfaces:
public interface CallNotificationResultThe CallNotificationResult is used to indicate the result of a relayed push notification payload and includes call related information.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetCallId()The call identifier. abstract StringgetRemoteUserId()The remote user identifier. abstract StringgetDisplayName()The display name of the user calling, if available (null otherwise). abstract BooleanisVideoOffered()Flag indicating whether the caller offered video. abstract Map<String, String>getCallHeaders()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()The domain associated with the call. -
-
Method Detail
-
getRemoteUserId
abstract String getRemoteUserId()
The remote user identifier.
-
getDisplayName
abstract String getDisplayName()
The display name of the user calling, if available (null otherwise).
-
isVideoOffered
abstract Boolean isVideoOffered()
Flag indicating whether the caller offered video.
-
getCallHeaders
abstract Map<String, String> getCallHeaders()
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.
-
-
-
-