|
@@ -376,9 +376,9 @@ type RefreshLoginQRResp struct {
|
|
|
// swagger:model SendTextMsgReq
|
|
|
type SendTextMsgReq struct {
|
|
|
// 属主微信id
|
|
|
- WxWxid *string `json:"wxWxid"`
|
|
|
+ WxWxid *string `json:"senderWxId"`
|
|
|
// 微信id 公众号微信ID
|
|
|
- Wxid *string `json:"wxid"`
|
|
|
+ Wxid *string `json:"receiverWxId"`
|
|
|
// 微信文本消息内容
|
|
|
Msg *string `json:"msg"`
|
|
|
}
|
|
@@ -435,6 +435,8 @@ type ContactListReq struct {
|
|
|
Wxid *string `json:"wxid,optional"`
|
|
|
// 微信账号
|
|
|
Account *string `json:"account,optional"`
|
|
|
+ // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
|
|
|
+ Type *int `json:"type,optional"`
|
|
|
}
|
|
|
|
|
|
// Contact information response | Contact信息返回体
|
|
@@ -914,3 +916,50 @@ type MessageRecordsInfoResp struct {
|
|
|
// MessageRecords information | MessageRecords数据
|
|
|
Data MessageRecordsInfo `json:"data"`
|
|
|
}
|
|
|
+
|
|
|
+// The response data of chatroom member information | ChatroomMember信息
|
|
|
+// swagger:model ChatroomMemberInfo
|
|
|
+type ChatroomMemberInfo struct {
|
|
|
+ // 名称
|
|
|
+ Wxid *string `json:"wxid,optional"`
|
|
|
+ // 群组
|
|
|
+ ChatRoom *string `json:"chatRoom,optional"`
|
|
|
+ // 属主Wxid
|
|
|
+ OwnerWxid *string `json:"ownerWxid,optional"`
|
|
|
+ // 账号
|
|
|
+ Account *string `json:"account,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+// The response data of chatroom member list | ChatroomMember列表数据
|
|
|
+// swagger:model ChatroomMemberListResp
|
|
|
+type ChatroomMemberListResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // chatroom member list data | chatroom member 列表数据
|
|
|
+ Data ChatroomMemberListInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// chatroom member list data | chatroom member列表数据
|
|
|
+// swagger:model ChatroomMemberListInfo
|
|
|
+type ChatroomMemberListInfo struct {
|
|
|
+ BaseListInfo
|
|
|
+ // The API list data | chatroom member列表数据
|
|
|
+ Data []ChatroomMemberInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// Get chatroom member list request params | ChatroomMember列表请求参数
|
|
|
+// swagger:model ChatroomMemberListReq
|
|
|
+type ChatroomMemberListReq struct {
|
|
|
+ PageInfo
|
|
|
+ // 属主Wxid
|
|
|
+ OwnerWxid *string `json:"ownerWxid,optional"`
|
|
|
+ // 群组
|
|
|
+ ChatRoom *string `json:"chatRoom,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+// chatroom member information response | ChatroomMember信息返回体
|
|
|
+// swagger:model ChatroomMemberInfoResp
|
|
|
+type ChatroomMemberInfoResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // Server information | Server数据
|
|
|
+ Data ChatroomMemberInfo `json:"data"`
|
|
|
+}
|