Skip to content

ParticipantRoleChangedEvent

Ajša Terko edited this page Jul 23, 2025 · 1 revision



getParticipant()

Description

Getter for the participant field.

Arguments

  • none

Returns

  • Participant - The value of the participant field, which represents the participant whose role has changed.

Example

ApplicationCallEventListener applicationCallEventListener = new DefaultApplicationCallEventListener() {
    @Override
    public void onParticipantRoleChanged(ParticipantRoleChangedEvent participantRoleChangedEvent) {
        Participant participant = participantRoleChangedEvent.getParticipant();
    }
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally