UNPKG

1.5 kBTypeScriptView Raw
1/**
2 * LINE Messaging API(Insight)
3 * This document describes LINE Messaging API(Insight).
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 { GetMessageEventResponseClick } from "./getMessageEventResponseClick";
13import { GetMessageEventResponseMessage } from "./getMessageEventResponseMessage";
14import { GetMessageEventResponseOverview } from "./getMessageEventResponseOverview";
15/**
16 * Statistics about how users interact with narrowcast messages or broadcast messages sent from your LINE Official Account.
17 */
18export type GetMessageEventResponse = {
19 /**
20 *
21 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-insight-message-event-response">overview Documentation</a>
22 */
23 overview?: GetMessageEventResponseOverview;
24 /**
25 * Array of information about individual message bubbles.
26 *
27 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-insight-message-event-response">messages Documentation</a>
28 */
29 messages?: Array<GetMessageEventResponseMessage>;
30 /**
31 * Array of information about opened URLs in the message.
32 *
33 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-insight-message-event-response">clicks Documentation</a>
34 */
35 clicks?: Array<GetMessageEventResponseClick>;
36};