UserControlRequest

Properties

fullRights: boolean;

Whether the controlled user/device fully impersonates its controller

publicToken: string;

Public token of the weak you want to control

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
interface UserControlRequest {

  /**
   * Whether the controlled user/device fully impersonates its controller
   */
  fullRights: boolean;

  /**
   * Public token of the weak you want to control
   */
  publicToken: string;

}