Type alias OnIncomingParticipantAudioChangeEvent

OnIncomingParticipantAudioChangeEvent: { participants: { participantUUID: string; audio: boolean }[]; timestamp: number }

Usage:

zoomSdk.onIncomingParticipantAudioChange((event) => {
console.log(event)
});

Console log:

{“participants": [{"participantUUID": "participantUUID1", "audio": "true"},...]}

Type declaration

  • participants: { participantUUID: string; audio: boolean }[]

    Target participants with specified participantUUID and their respective audio state.

  • timestamp: number

    TimeStamp when the Incoming Participant Audio Changes.

Generated using TypeDoc