-
Notifications
You must be signed in to change notification settings - Fork 2
IncomingWebrtcCallEvent
Lejla Solak edited this page Feb 10, 2025
·
4 revisions
Getter for the incomingWebrtcCall field.
none
-
IncomingWebrtcCall- The value of theincomingWebrtcCallfield, which represents the incoming WebRTC call.
IncomingCallEventListener incomingCallEventListener = incomingWebrtcCallEvent -> {
IncomingWebrtcCall incomingWebrtcCall = incomingWebrtcCallEvent.getIncomingWebrtcCall();
};Getter for the customData field.
none
-
Map<String, String>- The value of thecustomDatafield, which is defined as an object of key-value string pairs containing custom additional information received with the incoming WebRTC call.
IncomingCallEventListener incomingCallEventListener = incomingWebrtcCallEvent -> {
Map<String, String> customData = incomingWebrtcCallEvent.getCustomData();
};