UserControlStatus

Properties

controller: string;

User key of the controlling user

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
14
15
16
17
18
interface UserControlStatus {

  /**
   * User key of the controlling user
   */
  controller: string;

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

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

}