UNPKG

1.94 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 * Get number of followers
14 */
15export type GetNumberOfFollowersResponse = {
16 /**
17 * Calculation status.
18 *
19 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-number-of-followers">status Documentation</a>
20 */
21 status?: GetNumberOfFollowersResponse.StatusEnum;
22 /**
23 * The number of times, as of the specified date, that a user added this LINE Official Account as a friend for the first time. The number doesn\'t decrease even if a user later blocks the account or when they delete their LINE account.
24 *
25 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-number-of-followers">followers Documentation</a>
26 */
27 followers?: number;
28 /**
29 * The number of users, as of the specified date, that the LINE Official Account can reach through targeted messages based on gender, age, and/or region. This number only includes users who are active on LINE or LINE services and whose demographics have a high level of certainty.
30 *
31 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-number-of-followers">targetedReaches Documentation</a>
32 */
33 targetedReaches?: number;
34 /**
35 * The number of users blocking the account as of the specified date. The number decreases when a user unblocks the account.
36 *
37 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-number-of-followers">blocks Documentation</a>
38 */
39 blocks?: number;
40};
41export declare namespace GetNumberOfFollowersResponse {
42 type StatusEnum = "ready" | "unready" | "out_of_service";
43}