Skip to content

ParticipantUnblindedEvent

Ajša Terko edited this page Aug 7, 2025 · 1 revision



getParticipant()

Description

Getter for the participant field.

Arguments

  • none

Returns

  • Participant - The value of the participant field, which represents the participant that has been unblinded.

Example

RoomCallEventListener roomCallEventListener = new DefaultRoomCallEventListener() {
    @Override
    public void onParticipantUnblinded(ParticipantUnblindedEvent participantUnblindedEvent) {
        Participant participant = participantUnblindedEvent.getParticipant();
    }
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally