UserInfoRequest

Properties

requestId: string;

User field for traceability of requests. Synchronous SDK APIs use this field for you.

userKeys: Set[String];

Set of user keys

Source

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

  /**
   * User field for traceability of requests. Synchronous SDK APIs use this field for you.
   */
  requestId: string;

  /**
   * Set of user keys
   */
  userKeys: Set[String];

}