UNPKG

1.46 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 { GetStatisticsPerUnitResponseClick } from "./getStatisticsPerUnitResponseClick";
13import { GetStatisticsPerUnitResponseMessage } from "./getStatisticsPerUnitResponseMessage";
14import { GetStatisticsPerUnitResponseOverview } from "./getStatisticsPerUnitResponseOverview";
15/**
16 * Response object for `get statistics per unit`
17 */
18export type GetStatisticsPerUnitResponse = {
19 /**
20 *
21 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">overview Documentation</a>
22 */
23 overview: GetStatisticsPerUnitResponseOverview;
24 /**
25 * Array of information about individual message bubbles.
26 *
27 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">messages Documentation</a>
28 */
29 messages: Array<GetStatisticsPerUnitResponseMessage>;
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-statistics-per-unit-response">clicks Documentation</a>
34 */
35 clicks: Array<GetStatisticsPerUnitResponseClick>;
36};