VideoUser
The user object defines the user that will be participating in the video channels.
Constructor
const user = new VideoUser(id [, options])
UserOptions
Property
Description
name
Name to be displayed in the list of participants for the current user. If not provided, a name will be generated from the user id
and deviceId
deviceId
Unique device identifier. If not provided a random id will be generated.
Example VideoUser Instantiation
const user = new VideoUser(
"Some unique id",
{
name: "Some display name for the user",
deviceId: "Some unique id associated with user's current device"
}
);
Properties
Property
Description
id
User Identifier
name
Name to be displayed in the list of participants for the current user. If not provided, a name will be generated from the user id
and deviceId
deviceId
Unique device identifier. If not provided a random id will be generated.
Last updated