UNPKG

1.56 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 */
12/**
13 * Statistics related to messages.
14 */
15export type GetStatisticsPerUnitResponseOverview = {
16 /**
17 * Number of users who opened the message, meaning they displayed at least 1 bubble.
18 *
19 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueImpression Documentation</a>
20 */
21 uniqueImpression?: number | null;
22 /**
23 * Number of users who opened any URL in the message.
24 *
25 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueClick Documentation</a>
26 */
27 uniqueClick?: number | null;
28 /**
29 * Number of users who started playing any video or audio in the message.
30 *
31 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed Documentation</a>
32 */
33 uniqueMediaPlayed?: number | null;
34 /**
35 * Number of users who played the entirety of any video or audio in the message.
36 *
37 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed100Percent Documentation</a>
38 */
39 uniqueMediaPlayed100Percent?: number | null;
40};