UNPKG

1.35 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 { CameraAction } from "./models.js";
13import { CameraRollAction } from "./models.js";
14import { ClipboardAction } from "./models.js";
15import { DatetimePickerAction } from "./models.js";
16import { LocationAction } from "./models.js";
17import { MessageAction } from "./models.js";
18import { PostbackAction } from "./models.js";
19import { RichMenuSwitchAction } from "./models.js";
20import { URIAction } from "./models.js";
21export type Action = CameraAction | CameraRollAction | ClipboardAction | DatetimePickerAction | LocationAction | MessageAction | PostbackAction | RichMenuSwitchAction | URIAction;
22/**
23 * Action
24 */
25export type ActionBase = {
26 /**
27 * Type of action
28 *
29 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#action-objects">type Documentation</a>
30 */
31 type?: string;
32 /**
33 * Label for the action.
34 *
35 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#action-objects">label Documentation</a>
36 */
37 label?: string;
38};
39//# sourceMappingURL=action.d.ts.map
\No newline at end of file