UNPKG

1.17 kBTypeScriptView Raw
1/**
2 * LINE Messaging API
3 * This document describes LINE Messaging API.
4 *
5 * The version of the OpenAPI document: 0.0.1
6 *
7 *
8 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9 * https://openapi-generator.tech
10 * Do not edit the class manually.
11 */
12/**
13 * Rich menu bounds
14 */
15export type RichMenuBounds = {
16 /**
17 * Horizontal position relative to the top-left corner of the area.
18 *
19 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">x Documentation</a>
20 */
21 x?: number;
22 /**
23 * Vertical position relative to the top-left corner of the area.
24 *
25 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">y Documentation</a>
26 */
27 y?: number;
28 /**
29 * Width of the area.
30 *
31 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">width Documentation</a>
32 */
33 width?: number;
34 /**
35 * Height of the area.
36 *
37 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">height Documentation</a>
38 */
39 height?: number;
40};