/**
 * 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 { Action } from "./action.js";
import { FlexBox } from "./flexBox.js";
import { FlexBubbleStyles } from "./flexBubbleStyles.js";
import { FlexComponent } from "./flexComponent.js";
import { FlexContainer } from "./flexContainer.js";

import { FlexContainerBase } from "./models.js";

export type FlexBubble = FlexContainerBase & {
  type: "bubble";
  /**
   */
  direction?: FlexBubble.DirectionEnum /**/;
  /**
   */
  styles?: FlexBubbleStyles /**/;
  /**
   */
  header?: FlexBox /**/;
  /**
   */
  hero?: FlexComponent /**/;
  /**
   */
  body?: FlexBox /**/;
  /**
   */
  footer?: FlexBox /**/;
  /**
   */
  size?: FlexBubble.SizeEnum /**/;
  /**
   */
  action?: Action /**/;
};

export namespace FlexBubble {
  export type DirectionEnum = "ltr" | "rtl";

  export type SizeEnum =
    | "nano"
    | "micro"
    | "deca"
    | "hecto"
    | "kilo"
    | "mega"
    | "giga";
}
