File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -81,4 +81,6 @@ type ChannelValueObject struct {
81
81
// 机器人在此频道上拥有的权限, 定义请参考
82
82
// [文档](https://bot.q.qq.com/wiki/develop/api/openapi/channel_permissions/model.html#permissions)
83
83
Permissions string `json:"permissions,omitempty"`
84
+ // 操作人
85
+ OpUserID string `json:"op_user_id,omitempty"`
84
86
}
Original file line number Diff line number Diff line change @@ -27,4 +27,6 @@ type Guild struct {
27
27
UnionWorldID string `json:"union_world_id"`
28
28
// 游戏绑定公会/战队ID
29
29
UnionOrgID string `json:"union_org_id"`
30
+ // 操作人
31
+ OpUserID string `json:"op_user_id,omitempty"`
30
32
}
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ type Member struct {
7
7
Nick string `json:"nick"`
8
8
User * User `json:"user"`
9
9
Roles []string `json:"roles"`
10
+ OpUserID string `json:"op_user_id,omitempty"` // 操作人
10
11
}
11
12
12
13
// DeleteHistoryMsgDay 消息撤回天数
You can’t perform that action at this time.
0 commit comments