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 | * Mentioned target is user
|
14 | */
|
15 | import { MentioneeBase } from "./models.js";
|
16 | export type UserMentionee = MentioneeBase & {
|
17 | type: "user";
|
18 | /**
|
19 | * User ID of the mentioned user. Only included if mention.mentions[].type is user and the user consents to the LINE Official Account obtaining their user profile information.
|
20 | */
|
21 | userId?: string;
|
22 | /**
|
23 | * Whether the mentioned user is the bot that receives the webhook.
|
24 | */
|
25 | isSelf?: boolean;
|
26 | };
|
27 | //# sourceMappingURL=userMentionee.d.ts.map |
\ | No newline at end of file |