/** * 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 message deliveries */ export type GetNumberOfMessageDeliveriesResponse = { /** * Status of the counting process. * * @see status Documentation */ status?: GetNumberOfMessageDeliveriesResponse.StatusEnum; /** * Number of messages sent to all of this LINE Official Account\'s friends (broadcast messages). * * @see broadcast Documentation */ broadcast?: number; /** * Number of messages sent to some of this LINE Official Account\'s friends, based on specific attributes (targeted messages). * * @see targeting Documentation */ targeting?: number; /** * Number of auto-response messages sent. * * @see autoResponse Documentation */ autoResponse?: number; /** * Number of greeting messages sent. * * @see welcomeResponse Documentation */ welcomeResponse?: number; /** * Number of messages sent from LINE Official Account Manager [Chat screen](https://www.linebiz.com/jp/manual/OfficialAccountManager/chats/) (only available in Japanese). * * @see chat Documentation */ chat?: number; /** * Number of broadcast messages sent with the `Send broadcast message` Messaging API operation. * * @see apiBroadcast Documentation */ apiBroadcast?: number; /** * Number of push messages sent with the `Send push message` Messaging API operation. * * @see apiPush Documentation */ apiPush?: number; /** * Number of multicast messages sent with the `Send multicast message` Messaging API operation. * * @see apiMulticast Documentation */ apiMulticast?: number; /** * Number of narrowcast messages sent with the `Send narrowcast message` Messaging API operation. * * @see apiNarrowcast Documentation */ apiNarrowcast?: number; /** * Number of replies sent with the `Send reply message` Messaging API operation. * * @see apiReply Documentation */ apiReply?: number; }; export declare namespace GetNumberOfMessageDeliveriesResponse { type StatusEnum = "ready" | "unready" | "out_of_service"; }