GdaListResult

Properties

request: GdaList;

Request leading to the result

requestId: string;

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

result: PageContent[Map[String,Object]];

Result for the specified request

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface GdaListResult {

  /**
   * Request leading to the result
   */
  request: GdaList;

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

  /**
   * Result for the specified request
   */
  result: PageContent[Map[String,Object]];

}