SearchData

Properties

data: Map<string,Object>;

Document data

id: string;

Document id

index: string;

Index name

requestId: string;

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

type: string;

Type name

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
interface SearchData {

  /**
   * Document data
   */
  data: Map<string,Object>;

  /**
   * Document id
   */
  id: string;

  /**
   * Index name
   */
  index: string;

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

  /**
   * Type name
   */
  type: string;

}