set groupmember nickname

This commit is contained in:
skiffer-git
2022-04-18 11:52:17 +08:00
committed by Xinwei Xiong(cubxxw-openim)
parent 4f6f68b70f
commit f9d9f794de
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
}