OnFeedbackReactionEvent: { participantUUID: string; timestamp: number; feedback: FeedbackReactions }

Usage:

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

Console log:

{
"participantUUID": "participantUUID1",
"timestamp": 1614831950,
"feedback": "raiseHand",
}

Type declaration

  • participantUUID: string

    Participant UUID of the user who sent the feedback

  • timestamp: number

    Timestamp at which the feedback was sent

  • feedback: FeedbackReactions

    Type of feedback triggered

Generated using TypeDoc