UNPKG

939 BTypeScriptView 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 */
12import { RichMenuArea } from "./richMenuArea";
13import { RichMenuSize } from "./richMenuSize";
14export type RichMenuRequest = {
15 /**
16 */
17 size?: RichMenuSize;
18 /**
19 * `true` to display the rich menu by default. Otherwise, `false`.
20 */
21 selected?: boolean;
22 /**
23 * Name of the rich menu. This value can be used to help manage your rich menus and is not displayed to users.
24 */
25 name?: string;
26 /**
27 * Text displayed in the chat bar
28 */
29 chatBarText?: string;
30 /**
31 * Array of area objects which define the coordinates and size of tappable areas
32 */
33 areas?: Array<RichMenuArea>;
34};