SearchDocumentId

Properties

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
interface SearchDocumentId {

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

}