Files
open-im-server/pkg/call_back_struct/group.go
T

28 lines
872 B
Go
Raw Normal View History

2022-02-28 17:57:03 +08:00
package call_back_struct
2022-10-21 15:44:55 +08:00
import (
commonPb "Open_IM/pkg/proto/sdk_ws"
)
2022-02-28 17:57:03 +08:00
type CallbackBeforeCreateGroupReq struct {
2022-10-21 15:44:55 +08:00
CallbackCommand string `json:"callbackCommand"`
commonPb.GroupInfo
2022-02-28 17:57:03 +08:00
}
2022-10-21 15:44:55 +08:00
type CallbackBeforeCreateGroupResp struct {
2022-02-28 17:57:03 +08:00
CommonCallbackResp
2022-10-21 15:44:55 +08:00
GroupID *string `json:"groupID"`
GroupName *string `json:"groupName"`
Notification *string `json:"notification"`
Introduction *string `json:"introduction"`
FaceURL *string `json:"faceURL"`
OwnerUserID *string `json:"ownerUserID"`
Ex *string `json:"ex"`
Status *int32 `json:"status"`
CreatorUserID *string `json:"creatorUserID"`
GroupType *int32 `json:"groupType"`
NeedVerification *int32 `json:"needVerification"`
LookMemberInfo *int32 `json:"lookMemberInfo"`
ApplyMemberFriend *int32 `json:"applyMemberFriend"`
}