Type alias OnMyActiveSpeakerChangeEvent

OnMyActiveSpeakerChangeEvent: { timestamp: number; status: "started" | "stopped" }

Usage:

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

Console log:

{
"timestamp": 1614831950,
"status": "started"
}

Type declaration

  • timestamp: number

    Timestamp at which the active speaker changed

  • status: "started" | "stopped"

    User speaking status.

Generated using TypeDoc