UNPKG

4.25 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 GetStatisticsPerUnitResponseMessage = {
13 /**
14 * Bubble\'s serial number.
15 *
16 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">seq Documentation</a>
17 */
18 seq: number;
19 /**
20 * Number of times the bubble was displayed.
21 *
22 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">impression Documentation</a>
23 */
24 impression?: number | null;
25 /**
26 * Number of times audio or video in the bubble started playing.
27 *
28 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">mediaPlayed Documentation</a>
29 */
30 mediaPlayed?: number | null;
31 /**
32 * Number of times audio or video in the bubble started playing and was played 25% of the total time.
33 *
34 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">mediaPlayed25Percent Documentation</a>
35 */
36 mediaPlayed25Percent?: number | null;
37 /**
38 * Number of times audio or video in the bubble started playing and was played 50% of the total time.
39 *
40 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">mediaPlayed50Percent Documentation</a>
41 */
42 mediaPlayed50Percent?: number | null;
43 /**
44 * Number of times audio or video in the bubble started playing and was played 75% of the total time.
45 *
46 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">mediaPlayed75Percent Documentation</a>
47 */
48 mediaPlayed75Percent?: number | null;
49 /**
50 * Number of times audio or video in the bubble started playing and was played 100% of the total time.
51 *
52 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">mediaPlayed100Percent Documentation</a>
53 */
54 mediaPlayed100Percent?: number | null;
55 /**
56 * Number of users the bubble was displayed.
57 *
58 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueImpression Documentation</a>
59 */
60 uniqueImpression?: number | null;
61 /**
62 * Number of users that started playing audio or video in the bubble.
63 *
64 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed Documentation</a>
65 */
66 uniqueMediaPlayed?: number | null;
67 /**
68 * Number of users that started playing audio or video in the bubble and played 25% of the total time.
69 *
70 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed25Percent Documentation</a>
71 */
72 uniqueMediaPlayed25Percent?: number | null;
73 /**
74 * Number of users that started playing audio or video in the bubble and played 50% of the total time.
75 *
76 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed50Percent Documentation</a>
77 */
78 uniqueMediaPlayed50Percent?: number | null;
79 /**
80 * Number of users that started playing audio or video in the bubble and played 75% of the total time.
81 *
82 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed75Percent Documentation</a>
83 */
84 uniqueMediaPlayed75Percent?: number | null;
85 /**
86 * Number of users that started playing audio or video in the bubble and played 100% of the total time.
87 *
88 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-statistics-per-unit-response">uniqueMediaPlayed100Percent Documentation</a>
89 */
90 uniqueMediaPlayed100Percent?: number | null;
91};