/** * LINE Messaging API(Insight) * This document describes LINE Messaging API(Insight). * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Get number of followers */ export type GetNumberOfFollowersResponse = { /** * Calculation status. * * @see status Documentation */ status?: GetNumberOfFollowersResponse.StatusEnum; /** * 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. * * @see followers Documentation */ followers?: number; /** * 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. * * @see targetedReaches Documentation */ targetedReaches?: number; /** * The number of users blocking the account as of the specified date. The number decreases when a user unblocks the account. * * @see blocks Documentation */ blocks?: number; }; export declare namespace GetNumberOfFollowersResponse { type StatusEnum = "ready" | "unready" | "out_of_service"; }