/**
 * LINE Messaging API
 * This document describes LINE Messaging API.
 *
 * 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.
 */

/**
 * Rich menu bounds
 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">https://developers.line.biz/en/reference/messaging-api/#bounds-object</a>
 */
export type RichMenuBounds = {
  /**
   * Horizontal position relative to the top-left corner of the area.
   * @minimum 0
   * @maximum 2147483647
   */
  x?: number;
  /**
   * Vertical position relative to the top-left corner of the area.
   * @minimum 0
   * @maximum 2147483647
   */
  y?: number;
  /**
   * Width of the area.
   * @minimum 1
   * @maximum 2147483647
   */
  width?: number;
  /**
   * Height of the area.
   * @minimum 1
   * @maximum 2147483647
   */
  height?: number;
};
