on Entry Requested
Called when a participant requests to enter a meeting that requires entry permission.
Use respondEntry to accept or deny the request.
Code Example:
override fun onEntryRequested(id: String, name: String) {
// Show UI to accept/deny entry
meeting.respondEntry(id, "allowed")
}
Content copied to clipboard
Parameters
id
the unique request ID
name
the display name of the participant requesting entry
See also
Meeting.respondEntry()