GdaCellsResult

Properties

request: GdaCellsRequest;

Request leading to the result

requestId: string;

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

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

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

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

  /**
   * Result for the specified request
   */
  result: Object;

}