File tree 5 files changed +25
-1
lines changed
5 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ model/emoji.ts
22
22
model/event.ts
23
23
model/eventMode.ts
24
24
model/fileMessageContent.ts
25
+ model/followDetail.ts
25
26
model/followEvent.ts
26
27
model/groupSource.ts
27
28
model/imageMessageContent.ts
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Webhook Type Definition
3
+ * Webhook event definition of the LINE Messaging API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
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
+ export type FollowDetail = {
14
+ /**
15
+ * Whether a user has added your LINE Official Account as a friend or unblocked.
16
+ */
17
+ isUnblocked : boolean /**/ ;
18
+ } ;
Original file line number Diff line number Diff line change 13
13
import { DeliveryContext } from "./deliveryContext" ;
14
14
import { Event } from "./event" ;
15
15
import { EventMode } from "./eventMode" ;
16
+ import { FollowDetail } from "./followDetail" ;
16
17
import { Source } from "./source" ;
17
18
18
19
/**
@@ -26,6 +27,9 @@ export type FollowEvent = EventBase & {
26
27
* Reply token used to send reply message to this event
27
28
*/
28
29
replyToken : string /**/ ;
30
+ /**
31
+ */
32
+ follow : FollowDetail /**/ ;
29
33
} ;
30
34
31
35
export namespace FollowEvent { }
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export * from "./emoji";
18
18
export * from "./event" ;
19
19
export * from "./eventMode" ;
20
20
export * from "./fileMessageContent" ;
21
+ export * from "./followDetail" ;
21
22
export * from "./followEvent" ;
22
23
export * from "./groupSource" ;
23
24
export * from "./imageMessageContent" ;
You can’t perform that action at this time.
0 commit comments