set groupmember nickname

This commit is contained in:
skiffer-git
2022-04-18 11:52:17 +08:00
parent 3bbf84861e
commit 248de7f1f2
12 changed files with 806 additions and 452 deletions
+11
View File
@@ -220,3 +220,14 @@ type CancelMuteGroupReq struct {
type CancelMuteGroupResp struct {
CommResp
}
type SetGroupMemberNicknameReq struct {
OperationID string `json:"operationID" binding:"required"`
GroupID string `json:"groupID" binding:"required"`
UserID string `json:"userID" binding:"required"`
Nickname string `json:"nickname"`
}
type SetGroupMemberNicknameResp struct {
CommResp
}