UNPKG

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