mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
16 lines
523 B
TypeScript
16 lines
523 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
|
|
type GroupIncreaseSubType = 'approve' | 'invite';
|
|
export class OB11GroupIncreaseEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_increase';
|
|
operator_id: number;
|
|
sub_type: GroupIncreaseSubType;
|
|
constructor(groupId: number, userId: number, operatorId: number, subType: GroupIncreaseSubType = 'approve') {
|
|
super();
|
|
this.group_id = groupId;
|
|
this.operator_id = operatorId;
|
|
this.user_id = userId;
|
|
this.sub_type = subType;
|
|
}
|
|
}
|