UNPKG

769 BTypeScriptView Raw
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 */
12import { GroupSource } from "./models.js";
13import { RoomSource } from "./models.js";
14import { UserSource } from "./models.js";
15export type Source = GroupSource | RoomSource | UserSource;
16/**
17 * the source of the event.
18 */
19export type SourceBase = {
20 /**
21 * source type
22 *
23 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#source-user">type Documentation</a>
24 */
25 type?: string;
26};
27//# sourceMappingURL=source.d.ts.map
\No newline at end of file