UNPKG

891 BTypeScriptView 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 GetMessageEventResponseClick = {
13 /**
14 * The URL\'s serial number.
15 */
16 seq?: number;
17 /**
18 * URL.
19 */
20 url?: string;
21 /**
22 * Number of times the URL was opened.
23 */
24 click?: number | null;
25 /**
26 * Number of users that opened the URL.
27 */
28 uniqueClick?: number | null;
29 /**
30 * Number of users who opened this url through any link in the message. If a message contains two links to the same URL and a user opens both links, they\'re counted only once.
31 */
32 uniqueClickOfRequest?: number | null;
33};