package robot // FriendItem // @description: 好友列表数据 type FriendItem struct { CustomAccount string `json:"customAccount"` // 微信号 EncryptName string `json:"encryptName"` // 不知道 Nickname string `json:"nickname"` // 昵称 Pinyin string `json:"pinyin"` // 昵称拼音大写首字母 PinyinAll string `json:"pinyinAll"` // 昵称全拼 Reserved1 int `json:"reserved1"` // 未知 Reserved2 int `json:"reserved2"` // 未知 Type int `json:"type"` // 类型 VerifyFlag int `json:"verifyFlag"` // 未知 WxId string `json:"wxid"` // 微信原始Id } // ContactProfile // @description: 好友资料 type ContactProfile struct { Account string `json:"account"` // 账号 HeadImage string `json:"headImage"` // 头像 Nickname string `json:"nickname"` // 昵称 V3 string `json:"v3"` // v3 WxId string `json:"wxid"` // 微信Id }