/**
 * 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 { GetStatisticsPerUnitResponseClick } from "./getStatisticsPerUnitResponseClick.js";
import { GetStatisticsPerUnitResponseMessage } from "./getStatisticsPerUnitResponseMessage.js";
import { GetStatisticsPerUnitResponseOverview } from "./getStatisticsPerUnitResponseOverview.js";
/**
 * Response object for `get statistics per unit`
 */
export type GetStatisticsPerUnitResponse = {
    /**
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">overview Documentation</a>
     */
    overview: GetStatisticsPerUnitResponseOverview;
    /**
     * Array of information about individual message bubbles.
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">messages Documentation</a>
     */
    messages: Array<GetStatisticsPerUnitResponseMessage>;
    /**
     * Array of information about opened URLs in the message.
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">clicks Documentation</a>
     */
    clicks: Array<GetStatisticsPerUnitResponseClick>;
};
//# sourceMappingURL=getStatisticsPerUnitResponse.d.ts.map