UNPKG

1.28 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 * Summary of message statistics.
14 */
15export type GetMessageEventResponseOverview = {
16 /**
17 * Request ID.
18 */
19 requestId?: string;
20 /**
21 * UNIX timestamp for message delivery time in seconds.
22 */
23 timestamp?: number;
24 /**
25 * Number of messages delivered. This property shows values of less than 20. However, if all messages have not been sent, it will be null.
26 */
27 delivered?: number;
28 /**
29 * Number of users who opened the message, meaning they displayed at least 1 bubble.
30 */
31 uniqueImpression?: number | null;
32 /**
33 * Number of users who opened any URL in the message.
34 */
35 uniqueClick?: number | null;
36 /**
37 * Number of users who started playing any video or audio in the message.
38 */
39 uniqueMediaPlayed?: number | null;
40 /**
41 * Number of users who played the entirety of any video or audio in the message.
42 */
43 uniqueMediaPlayed100Percent?: number | null;
44};