/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { SubstitutionObject } from "./substitutionObject.js";
import { MessageBase } from "./models.js";
export type TextMessageV2 = MessageBase & {
type: "textV2";
/**
*
* @see text Documentation
*/
text: string;
/**
* A mapping that specifies substitutions for parts enclosed in {} within the \'text\' field.
*
* @see substitution Documentation
*/
substitution?: {
[key: string]: SubstitutionObject;
};
/**
* Quote token of the message you want to quote.
*
* @see quoteToken Documentation
*/
quoteToken?: string;
};
//# sourceMappingURL=textMessageV2.d.ts.map