/** * 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. */ import { AgeTile } from "./ageTile"; import { AppTypeTile } from "./appTypeTile"; import { AreaTile } from "./areaTile"; import { GenderTile } from "./genderTile"; import { SubscriptionPeriodTile } from "./subscriptionPeriodTile"; /** * Get friend demographics */ export type GetFriendsDemographicsResponse = { /** * true if friend demographic information is available. * * @see available Documentation */ available?: boolean; /** * Percentage per gender. * * @see genders Documentation */ genders?: Array; /** * Percentage per age group. * * @see ages Documentation */ ages?: Array; /** * Percentage per area. * * @see areas Documentation */ areas?: Array; /** * Percentage by OS. * * @see appTypes Documentation */ appTypes?: Array; /** * Percentage per friendship duration. * * @see subscriptionPeriods Documentation */ subscriptionPeriods?: Array; };