UNPKG

1.42 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 { ImagemapAction } from "./imagemapAction";
13import { ImagemapBaseSize } from "./imagemapBaseSize";
14import { ImagemapVideo } from "./imagemapVideo";
15import { MessageBase } from "./models";
16export type ImagemapMessage = MessageBase & {
17 type: "imagemap";
18 /**
19 *
20 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-message">baseUrl Documentation</a>
21 */
22 baseUrl: string;
23 /**
24 *
25 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-message">altText Documentation</a>
26 */
27 altText: string;
28 /**
29 *
30 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-message">baseSize Documentation</a>
31 */
32 baseSize: ImagemapBaseSize;
33 /**
34 *
35 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-message">actions Documentation</a>
36 */
37 actions: Array<ImagemapAction>;
38 /**
39 *
40 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-message">video Documentation</a>
41 */
42 video?: ImagemapVideo;
43};