|
@@ -1,5 +1,61 @@
|
|
|
package hook
|
|
|
|
|
|
+type GetChatrooMmemberDetailReq struct {
|
|
|
+ Gid string `json:"gid"`
|
|
|
+}
|
|
|
+
|
|
|
+type GetChatrooMmemberDetailReap struct {
|
|
|
+ Member []ChatrooMmemberDetail `json:"member"`
|
|
|
+}
|
|
|
+
|
|
|
+type ChatrooMmemberDetail struct {
|
|
|
+ Wxid string `json:"wxid"`
|
|
|
+ Nickname string `json:"nickname"`
|
|
|
+ UserHeadBig string `json:"user_head_big"`
|
|
|
+ UserHeadSmall string `json:"user_head_small"`
|
|
|
+ UserFlag string `json:"user_flag"`
|
|
|
+ InviterWxid string `json:"inviter_wxid"`
|
|
|
+}
|
|
|
+
|
|
|
+type GetChatroomMemberDetailInfoReq struct {
|
|
|
+ Gid string `json:"gid"`
|
|
|
+ Wxid string `json:"wxid"`
|
|
|
+}
|
|
|
+
|
|
|
+type GetChatroomMemberDetailInfoReap struct {
|
|
|
+ Type string `json:"type"`
|
|
|
+ Wxid string `json:"wxid"`
|
|
|
+ Nickname string `json:"nickname"`
|
|
|
+ Sex string `json:"sex"`
|
|
|
+ Source string `json:"source"`
|
|
|
+ Province string `json:"province"`
|
|
|
+ Area string `json:"area"`
|
|
|
+ Signinfo string `json:"signinfo"`
|
|
|
+ Wxaccount string `json:"wxaccount"`
|
|
|
+ Md5 string `json:"Md5"`
|
|
|
+ Timelinebgurl string `json:"timelinebgurl"`
|
|
|
+ Country string `json:"country"`
|
|
|
+ Headurl string `json:"headurl"`
|
|
|
+ HeadImgMd5 string `json:"headImgMd5"`
|
|
|
+ V3 string `json:"v3"`
|
|
|
+ Fromchatroom string `json:"fromchatroom"`
|
|
|
+ V4 string `json:"v4"`
|
|
|
+}
|
|
|
+
|
|
|
+type AddNewFriendReq struct {
|
|
|
+ V3Wxid string `json:"v3_wxid"`
|
|
|
+ V4 string `json:"v4"`
|
|
|
+ Desc string `json:"desc"`
|
|
|
+ AddType string `json:"type"`
|
|
|
+ Role string `json:"role"`
|
|
|
+}
|
|
|
+
|
|
|
+type AddNewFriendReap struct {
|
|
|
+ Status string `json:"Status"`
|
|
|
+ RetTxt string `json:"RetTxt"`
|
|
|
+ RetV3 string `json:"ret_v3"`
|
|
|
+}
|
|
|
+
|
|
|
type BatchGetContactBriefInfoReq struct {
|
|
|
WxidList string `json:"wxidlist"`
|
|
|
}
|