/**
 * 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.
 */

/**
 * Target area of the metrics, represented by the top-left coordinate, width, and height.
 */
export type GetRichMenuInsightSummaryResponseBounds = {
  /**
   * The x coordinate of the top-left corner of the target area.
   */
  x: number;
  /**
   * The y coordinate of the top-left corner of the target area.
   */
  y: number;
  /**
   * The width of the target area.
   */
  width: number;
  /**
   * The height of the target area.
   */
  height: number;
};
