@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
24 lines • 704 B
TypeScript
/**
* Webhook Type Definition
* Webhook event definition of the LINE Messaging API
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { SourceBase } from "./models.js";
export type RoomSource = SourceBase & {
type: "room";
/**
* ID of the source user. Only included in message events. Only users of LINE for iOS and LINE for Android are included in userId.
*/
userId?: string;
/**
* Room ID of the source multi-person chat
*/
roomId: string;
};
//# sourceMappingURL=roomSource.d.ts.map