merge callback after join group

pull/1499/head
AndrewZuo01 2 years ago
parent e441811ab9
commit 998f7d01a5

@ -115,45 +115,45 @@ type CallbackAfterJoinGroupResp struct {
type CallbackBeforeSetGroupInfoReq struct { type CallbackBeforeSetGroupInfoReq struct {
CallbackCommand `json:"callbackCommand"` CallbackCommand `json:"callbackCommand"`
OperationID string `json:"operationID"` OperationID string `json:"operationID"`
GroupID string `json:"groupID"` GroupID string `json:"groupID"`
GroupName string `json:"groupName"` GroupName string `json:"groupName"`
Notification string `json:"notification"` Notification string `json:"notification"`
Introduction string `json:"introduction"` Introduction string `json:"introduction"`
FaceURL string `json:"faceURL"` FaceURL string `json:"faceURL"`
Ex *string `json:"ex"` Ex string `json:"ex"`
NeedVerification *int32 `json:"needVerification"` NeedVerification int32 `json:"needVerification"`
LookMemberInfo *int32 `json:"lookMemberInfo"` LookMemberInfo int32 `json:"lookMemberInfo"`
ApplyMemberFriend *int32 `json:"applyMemberFriend"` ApplyMemberFriend int32 `json:"applyMemberFriend"`
EventTime int64 `json:"eventTime"` EventTime int64 `json:"eventTime"`
} }
type CallbackBeforeSetGroupInfoResp struct { type CallbackBeforeSetGroupInfoResp struct {
CommonCallbackResp CommonCallbackResp
GroupID string ` json:"groupID"` GroupID string ` json:"groupID"`
GroupName string `json:"groupName"` GroupName string `json:"groupName"`
Notification string `json:"notification"` Notification string `json:"notification"`
Introduction string `json:"introduction"` Introduction string `json:"introduction"`
FaceURL string `json:"faceURL"` FaceURL string `json:"faceURL"`
Ex *string `json:"ex"` Ex string `json:"ex"`
NeedVerification *int32 `json:"needVerification"` NeedVerification int32 `json:"needVerification"`
LookMemberInfo *int32 `json:"lookMemberInfo"` LookMemberInfo int32 `json:"lookMemberInfo"`
ApplyMemberFriend *int32 `json:"applyMemberFriend"` ApplyMemberFriend int32 `json:"applyMemberFriend"`
} }
type CallbackAfterSetGroupInfoReq struct { type CallbackAfterSetGroupInfoReq struct {
CallbackCommand `json:"callbackCommand"` CallbackCommand `json:"callbackCommand"`
OperationID string `json:"operationID"` OperationID string `json:"operationID"`
GroupID string `json:"groupID"` GroupID string `json:"groupID"`
GroupName string `json:"groupName"` GroupName string `json:"groupName"`
Notification string `json:"notification"` Notification string `json:"notification"`
Introduction string `json:"introduction"` Introduction string `json:"introduction"`
FaceURL string `json:"faceURL"` FaceURL string `json:"faceURL"`
Ex *string `json:"ex"` Ex string `json:"ex"`
NeedVerification *int32 `json:"needVerification"` NeedVerification int32 `json:"needVerification"`
LookMemberInfo *int32 `json:"lookMemberInfo"` LookMemberInfo int32 `json:"lookMemberInfo"`
ApplyMemberFriend *int32 `json:"applyMemberFriend"` ApplyMemberFriend int32 `json:"applyMemberFriend"`
EventTime int64 `json:"eventTime"` EventTime int64 `json:"eventTime"`
} }
type CallbackAfterSetGroupInfoResp struct { type CallbackAfterSetGroupInfoResp struct {

Loading…
Cancel
Save