/**
 * 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 GroupSource = SourceBase & {
    type: "group";
    /**
     * Group ID of the source group chat
     */
    groupId: string;
    /**
     * 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;
};
//# sourceMappingURL=groupSource.d.ts.map