UNPKG

2.12 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 */
12export type GetMessageEventResponseMessage = {
13 /**
14 * Bubble\'s serial number.
15 */
16 seq?: number;
17 /**
18 * Number of times the bubble was displayed.
19 */
20 impression?: number | null;
21 /**
22 * Number of times audio or video in the bubble started playing.
23 */
24 mediaPlayed?: number | null;
25 /**
26 * Number of times audio or video in the bubble started playing and was played 25% of the total time.
27 */
28 mediaPlayed25Percent?: number | null;
29 /**
30 * Number of times audio or video in the bubble started playing and was played 50% of the total time.
31 */
32 mediaPlayed50Percent?: number | null;
33 /**
34 * Number of times audio or video in the bubble started playing and was played 75% of the total time.
35 */
36 mediaPlayed75Percent?: number | null;
37 /**
38 * Number of times audio or video in the bubble started playing and was played 100% of the total time.
39 */
40 mediaPlayed100Percent?: number | null;
41 /**
42 * Number of users that started playing audio or video in the bubble.
43 */
44 uniqueMediaPlayed?: number | null;
45 /**
46 * Number of users that started playing audio or video in the bubble and played 25% of the total time.
47 */
48 uniqueMediaPlayed25Percent?: number | null;
49 /**
50 * Number of users that started playing audio or video in the bubble and played 50% of the total time.
51 */
52 uniqueMediaPlayed50Percent?: number | null;
53 /**
54 * Number of users that started playing audio or video in the bubble and played 75% of the total time.
55 */
56 uniqueMediaPlayed75Percent?: number | null;
57 /**
58 * Number of users that started playing audio or video in the bubble and played 100% of the total time.
59 */
60 uniqueMediaPlayed100Percent?: number | null;
61};