TemplateResult

Properties

content: string;

Result of template evaluation

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

  /**
   * Result of template evaluation
   */
  content: string;

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

}