UNPKG

@line/bot-sdk

Version:
30 lines 1.31 kB
/** * 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 <a href="https://developers.line.biz/en/reference/messaging-api/#get-insight-message-event-response">https://developers.line.biz/en/reference/messaging-api/#get-insight-message-event-response</a> */ export type GetMessageEventResponse = { overview?: GetMessageEventResponseOverview; /** * Array of information about individual message bubbles. */ messages?: Array<GetMessageEventResponseMessage>; /** * Array of information about opened URLs in the message. */ clicks?: Array<GetMessageEventResponseClick>; }; //# sourceMappingURL=getMessageEventResponse.d.ts.map