@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
39 lines (35 loc) • 975 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 { FlexBox } from "./models.js";
import { FlexButton } from "./models.js";
import { FlexFiller } from "./models.js";
import { FlexIcon } from "./models.js";
import { FlexImage } from "./models.js";
import { FlexSeparator } from "./models.js";
import { FlexSpan } from "./models.js";
import { FlexText } from "./models.js";
import { FlexVideo } from "./models.js";
export type FlexComponent =
| FlexBox // box
| FlexButton // button
| FlexFiller // filler
| FlexIcon // icon
| FlexImage // image
| FlexSeparator // separator
| FlexSpan // span
| FlexText // text
| FlexVideo; // video
export type FlexComponentBase = {
/**
*/
type: string /**/;
};