/** * 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 https://developers.line.biz/en/reference/messaging-api/#bounds-object */ 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; };