UNPKG

1.09 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 { Action } from "./action";
13import { FlexBox } from "./flexBox";
14import { FlexBubbleStyles } from "./flexBubbleStyles";
15import { FlexComponent } from "./flexComponent";
16import { FlexContainerBase } from "./models";
17export type FlexBubble = FlexContainerBase & {
18 type: "bubble";
19 /**
20 */
21 direction?: FlexBubble.DirectionEnum;
22 /**
23 */
24 styles?: FlexBubbleStyles;
25 /**
26 */
27 header?: FlexBox;
28 /**
29 */
30 hero?: FlexComponent;
31 /**
32 */
33 body?: FlexBox;
34 /**
35 */
36 footer?: FlexBox;
37 /**
38 */
39 size?: FlexBubble.SizeEnum;
40 /**
41 */
42 action?: Action;
43};
44export declare namespace FlexBubble {
45 type DirectionEnum = "ltr" | "rtl";
46 type SizeEnum = "nano" | "micro" | "deca" | "hecto" | "kilo" | "mega" | "giga";
47}