UserSearchResponse

Properties

page: Pagination;

Requested pagination

requestId: string;

Request ID, as given by the user

totalHits: long;

Total number of users matching the query

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
14
15
16
17
18
19
20
21
22
23
interface UserSearchResponse {

  /**
   * Requested pagination
   */
  page: Pagination;

  /**
   * Request ID, as given by the user
   */
  requestId: string;

  /**
   * Total number of users matching the query
   */
  totalHits: long;

  /**
   * 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>>;

}