|
|
|
@ -86,3 +86,74 @@ type CallbackBeforeSetGroupMemberInfoResp struct {
|
|
|
|
|
FaceURL *string `json:"faceURL"`
|
|
|
|
|
RoleLevel *int32 `json:"roleLevel"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterGroupMemberExitReq struct {
|
|
|
|
|
CallbackCommand `json:"callbackCommand"`
|
|
|
|
|
OperationID string `json:"operationID"`
|
|
|
|
|
GroupID string `json:"groupID"`
|
|
|
|
|
UserID string `json:"userID"`
|
|
|
|
|
GroupType *int32 `json:"groupType"`
|
|
|
|
|
ExitType string `json:"exitType"`
|
|
|
|
|
MuteEndTime *int64 `json:"muteEndTime"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterGroupMemberExitResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterUngroupReq struct {
|
|
|
|
|
CallbackCommand `json:"callbackCommand"`
|
|
|
|
|
OperationID string `json:"operationID"`
|
|
|
|
|
GroupID string `json:"groupID"`
|
|
|
|
|
GroupType *int32 `json:"groupType"`
|
|
|
|
|
OwnerID string `json:"ownerID"`
|
|
|
|
|
MemberList []string `json:"memberList"`
|
|
|
|
|
MuteEndTime *int64 `json:"muteEndTime"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterUngroupResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterSetGroupInfoReq struct {
|
|
|
|
|
CallbackCommand `json:"callbackCommand"`
|
|
|
|
|
OperationID string `json:"operationID"`
|
|
|
|
|
GroupID string `json:"groupID"`
|
|
|
|
|
GroupType *int32 `json:"groupType"`
|
|
|
|
|
UserID string `json:"userID"`
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
Notification string `json:"notification"`
|
|
|
|
|
GroupUrl string `json:"groupUrl"`
|
|
|
|
|
MuteEndTime *int64 `json:"muteEndTime"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterSetGroupInfoResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterRevokeMsgReq struct {
|
|
|
|
|
CallbackCommand `json:"callbackCommand"`
|
|
|
|
|
OperationID string `json:"operationID"`
|
|
|
|
|
GroupID string `json:"groupID"`
|
|
|
|
|
GroupType *int32 `json:"groupType"`
|
|
|
|
|
UserID string `json:"userID"`
|
|
|
|
|
Content string `json:"content"`
|
|
|
|
|
MuteEndTime *int64 `json:"muteEndTime"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterRevokeMsgResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackGroupMsgReadReq struct {
|
|
|
|
|
CallbackCommand `json:"callbackCommand"`
|
|
|
|
|
OperationID string `json:"operationID"`
|
|
|
|
|
SendID string `json:"sendID"`
|
|
|
|
|
ReceiveID string `json:"receiveID"`
|
|
|
|
|
UnreadMsgNum int64 `json:"UnreadMsgNum"`
|
|
|
|
|
MuteEndTime *int64 `json:"muteEndTime"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackGroupMsgReadResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|