UNPKG

668 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 { Action } from "./action";
13/**
14 * Column object for carousel template.
15 */
16export type CarouselColumn = {
17 /**
18 */
19 thumbnailImageUrl?: string;
20 /**
21 */
22 imageBackgroundColor?: string;
23 /**
24 */
25 title?: string;
26 /**
27 */
28 text: string;
29 /**
30 */
31 defaultAction?: Action;
32 /**
33 */
34 actions: Array<Action>;
35};