@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
37 lines (34 loc) • 934 B
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.
*/
import { RichMenuArea } from "./richMenuArea.js";
import { RichMenuSize } from "./richMenuSize.js";
export type RichMenuRequest = {
/**
*/
size?: RichMenuSize /**/;
/**
* `true` to display the rich menu by default. Otherwise, `false`.
*/
selected?: boolean /**/;
/**
* Name of the rich menu. This value can be used to help manage your rich menus and is not displayed to users.
*/
name?: string /**/;
/**
* Text displayed in the chat bar
*/
chatBarText?: string /**/;
/**
* Array of area objects which define the coordinates and size of tappable areas
*/
areas?: Array<RichMenuArea> /**/;
};