UNPKG

1.08 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 { ImagemapArea } from "./imagemapArea";
13import { ClipboardImagemapAction } from "./models";
14import { MessageImagemapAction } from "./models";
15import { URIImagemapAction } from "./models";
16export type ImagemapAction = ClipboardImagemapAction | MessageImagemapAction | URIImagemapAction | UnknownImagemapAction;
17export type UnknownImagemapAction = ImagemapActionBase & {
18 [key: string]: unknown;
19};
20export type ImagemapActionBase = {
21 /**
22 *
23 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-action-objects">type Documentation</a>
24 */
25 type: string;
26 /**
27 *
28 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-action-objects">area Documentation</a>
29 */
30 area: ImagemapArea;
31};