File tree 7 files changed +65
-1
lines changed
7 files changed +65
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ model/cameraRollAction.ts
22
22
model/carouselColumn.ts
23
23
model/carouselTemplate.ts
24
24
model/chatReference.ts
25
+ model/clipboardAction.ts
26
+ model/clipboardImagemapAction.ts
25
27
model/confirmTemplate.ts
26
28
model/createRichMenuAliasRequest.ts
27
29
model/datetimePickerAction.ts
Original file line number Diff line number Diff line change 12
12
13
13
import { CameraAction } from "./models" ;
14
14
import { CameraRollAction } from "./models" ;
15
+ import { ClipboardAction } from "./models" ;
15
16
import { DatetimePickerAction } from "./models" ;
16
17
import { LocationAction } from "./models" ;
17
18
import { MessageAction } from "./models" ;
@@ -22,6 +23,7 @@ import { URIAction } from "./models";
22
23
export type Action =
23
24
| CameraAction // camera
24
25
| CameraRollAction // cameraRoll
26
+ | ClipboardAction // clipboard
25
27
| DatetimePickerAction // datetimepicker
26
28
| LocationAction // location
27
29
| MessageAction // message
Original file line number Diff line number Diff line change
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
+ */
12
+
13
+ import { Action } from "./action" ;
14
+
15
+ import { ActionBase } from "./models" ;
16
+
17
+ export type ClipboardAction = ActionBase & {
18
+ type : "clipboard" ;
19
+ /**
20
+ * Text that is copied to the clipboard. Max character limit: 1000
21
+ *
22
+ * @see <a href="https://developers.line.biz/en/reference/messaging-api/#clipboard-action">clipboardText Documentation</a>
23
+ */
24
+ clipboardText : string /**/ ;
25
+ } ;
Original file line number Diff line number Diff line change
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
+ */
12
+
13
+ import { ImagemapAction } from "./imagemapAction" ;
14
+ import { ImagemapArea } from "./imagemapArea" ;
15
+
16
+ import { ImagemapActionBase } from "./models" ;
17
+
18
+ export type ClipboardImagemapAction = ImagemapActionBase & {
19
+ type : "clipboard" ;
20
+ /**
21
+ * Text that is copied to the clipboard. Max character limit: 1000
22
+ *
23
+ * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-clipboard-action-object">clipboardText Documentation</a>
24
+ */
25
+ clipboardText : string /**/ ;
26
+ /**
27
+ *
28
+ * @see <a href="https://developers.line.biz/en/reference/messaging-api/#imagemap-clipboard-action-object">label Documentation</a>
29
+ */
30
+ label ?: string /**/ ;
31
+ } ;
Original file line number Diff line number Diff line change 12
12
13
13
import { ImagemapArea } from "./imagemapArea" ;
14
14
15
+ import { ClipboardImagemapAction } from "./models" ;
15
16
import { MessageImagemapAction } from "./models" ;
16
17
import { URIImagemapAction } from "./models" ;
17
18
18
19
export type ImagemapAction =
20
+ | ClipboardImagemapAction // clipboard
19
21
| MessageImagemapAction // message
20
22
| URIImagemapAction // uri
21
23
| UnknownImagemapAction ;
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ export * from "./cameraRollAction";
17
17
export * from "./carouselColumn" ;
18
18
export * from "./carouselTemplate" ;
19
19
export * from "./chatReference" ;
20
+ export * from "./clipboardAction" ;
21
+ export * from "./clipboardImagemapAction" ;
20
22
export * from "./confirmTemplate" ;
21
23
export * from "./createRichMenuAliasRequest" ;
22
24
export * from "./datetimePickerAction" ;
You can’t perform that action at this time.
0 commit comments