UNPKG

1.21 kBTypeScriptView Raw
1/**
2 * LINE Messaging API
3 * This document describes LINE Messaging API.
4 *
5 * The version of the OpenAPI document: 0.0.1
6 *
7 *
8 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9 * https://openapi-generator.tech
10 * Do not edit the class manually.
11 */
12import { SubstitutionObject } from "./substitutionObject.js";
13import { MessageBase } from "./models.js";
14export type TextMessageV2 = MessageBase & {
15 type: "textV2";
16 /**
17 *
18 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#text-message-v2">text Documentation</a>
19 */
20 text: string;
21 /**
22 * A mapping that specifies substitutions for parts enclosed in {} within the \'text\' field.
23 *
24 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#text-message-v2">substitution Documentation</a>
25 */
26 substitution?: {
27 [key: string]: SubstitutionObject;
28 };
29 /**
30 * Quote token of the message you want to quote.
31 *
32 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#text-message-v2">quoteToken Documentation</a>
33 */
34 quoteToken?: string;
35};
36//# sourceMappingURL=textMessageV2.d.ts.map
\No newline at end of file