GrantCheckResult

Properties

ok: boolean;

True when the check passed

request: GrantCheckRequest;

The request

requestId: string;

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

Source

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

  /**
   * True when the check passed
   */
  ok: boolean;

  /**
   * The request
   */
  request: GrantCheckRequest;

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

}