GdaReduceResult

Properties

request: GdaReduceRequest;

Request leading to the result

requestId: string;

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

result: 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 GdaReduceResult {

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

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

  /**
   * Result for the specified request
   */
  result: Map<string,Object>;

}