TemplateRequest

Properties

data: Map<string,Object>;

Data model

languageTag: string;

Locale, as defined by IETF BCP 47

name: string;

Template name, as configured by an admin

requestId: string;

User field for traceability of requests. Synchronous SDK APIs use this field for you.

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
interface TemplateRequest {

  /**
   * Data model
   */
  data: Map<string,Object>;

  /**
   * Locale, as defined by IETF BCP 47
   */
  languageTag: string;

  /**
   * Template name, as configured by an admin
   */
  name: string;

  /**
   * User field for traceability of requests. Synchronous SDK APIs use this field for you.
   */
  requestId: string;

}