@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
38 lines • 1.38 kB
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 { GetRichMenuInsightSummaryResponseClick } from "./getRichMenuInsightSummaryResponseClick.js";
import { GetRichMenuInsightSummaryResponseImpression } from "./getRichMenuInsightSummaryResponseImpression.js";
/**
* Summary of impression and click statistics for a rich menu created via the Messaging API.
*/
export type GetRichMenuInsightSummaryResponse = {
/**
* Rich menu ID.
*/
richMenuId: string;
/**
* Start date (JST) of the period actually covered by the returned metrics. Format: yyyyMMdd (e.g. 20260213).
* Pattern: /^[0-9]{8}$/
*/
metricsFrom?: string | null;
/**
* End date (JST) of the period actually covered by the returned metrics. Format: yyyyMMdd (e.g. 20260215).
* Pattern: /^[0-9]{8}$/
*/
metricsTo?: string | null;
impression?: GetRichMenuInsightSummaryResponseImpression;
/**
* Click metrics for each tappable area of the rich menu.
*/
clicks?: Array<GetRichMenuInsightSummaryResponseClick>;
};
//# sourceMappingURL=getRichMenuInsightSummaryResponse.d.ts.map