* Reply Message * * Sends a reply message in response to an event from a user, group, or room. * * To send reply messages, you must have a reply token which is included in a webhook event object. * * [Webhooks](https://developers.line.biz/en/reference/messaging-api/#webhooks) are u
(
replyToken: string,
messages: LineTypes.Message[]
)
| 227 | * @returns Returns status code `200` and an empty JSON object. |
| 228 | */ |
| 229 | reply( |
| 230 | replyToken: string, |
| 231 | messages: LineTypes.Message[] |
| 232 | ): Promise<LineTypes.MutationSuccessResponse> { |
| 233 | return this.replyRawBody({ replyToken, messages }); |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Reply Message |