Type alias OnRemoveFeedbackReactionEvent

OnRemoveFeedbackReactionEvent: { participantUUID: string; timestamp: number }

Usage:

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

Console log:

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

Type declaration

  • participantUUID: string

    Participant UUID of the user who removed the feedback

  • timestamp: number

    Timestamp at which the feedback was removed

Generated using TypeDoc