/** * LINE Messaging API(Insight) * This document describes LINE Messaging API(Insight). * * 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 { GetMessageEventResponseClick } from "./getMessageEventResponseClick.js"; import { GetMessageEventResponseMessage } from "./getMessageEventResponseMessage.js"; import { GetMessageEventResponseOverview } from "./getMessageEventResponseOverview.js"; /** * Statistics about how users interact with narrowcast messages or broadcast messages sent from your LINE Official Account. * @see https://developers.line.biz/en/reference/messaging-api/#get-insight-message-event-response */ export type GetMessageEventResponse = { overview?: GetMessageEventResponseOverview; /** * Array of information about individual message bubbles. */ messages?: Array; /** * Array of information about opened URLs in the message. */ clicks?: Array; };