@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
26 lines (23 loc) • 830 B
text/typescript
/**
* 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 { GetRichMenuInsightDailyResponseBounds } from "./getRichMenuInsightDailyResponseBounds.js";
import { GetRichMenuInsightDailyResponseDailyMetrics } from "./getRichMenuInsightDailyResponseDailyMetrics.js";
/**
* Daily click metrics for a single tappable area of the rich menu.
*/
export type GetRichMenuInsightDailyResponseClick = {
bounds: GetRichMenuInsightDailyResponseBounds;
/**
* Per-day click metrics for the target area.
*/
metrics: Array<GetRichMenuInsightDailyResponseDailyMetrics>;
};