VideoUser

The user object defines the user that will be participating in the video channels.

Constructor

const user = new VideoUser(id [, options])

UserOptions

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

Last updated