@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
42 lines (40 loc) • 1.15 kB
text/typescript
/**
* 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
*/
export type RichMenuBounds = {
/**
* Horizontal position relative to the top-left corner of the area.
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">x Documentation</a>
*/
x?: number /**/;
/**
* Vertical position relative to the top-left corner of the area.
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">y Documentation</a>
*/
y?: number /**/;
/**
* Width of the area.
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">width Documentation</a>
*/
width?: number /**/;
/**
* Height of the area.
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#bounds-object">height Documentation</a>
*/
height?: number /**/;
};