Generates a list of random participants with specified options.
generateRandomParticipants({ member: "Alice", coHost: "Bob", host: "Carol", forChatBroadcast: true,});// Returns an array of Participant objects, e.g., [{ name: "Alice", islevel: "1", muted: false, id: "0", audioID: "audio-0", videoID: "video-0" }, ...] Copy
generateRandomParticipants({ member: "Alice", coHost: "Bob", host: "Carol", forChatBroadcast: true,});// Returns an array of Participant objects, e.g., [{ name: "Alice", islevel: "1", muted: false, id: "0", audioID: "audio-0", videoID: "video-0" }, ...]
The options for generating participants.
An array of generated participants.
Generates a list of random participants with specified options.
Example