UserInfoResponse

Properties

requestId: string;

User field for traceability of requests. The value was generated by the client requester.

users: Map<string,Map<string,Object>>;

Maps user keys to maps of their public data. Note that user data maps may have different formats for different authentication providers

Source

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

  /**
   * User field for traceability of requests. The value was generated by the client requester.
   */
  requestId: string;

  /**
   * Maps user keys to maps of their public data. Note that user data maps may have different formats for different authentication providers
   */
  users: Map<string,Map<string,Object>>;

}