workphone.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package types
  2. type WorkPhoneWeChat struct {
  3. Accountid *string `json:"accountid"`
  4. Avatar *string `json:"avatar"`
  5. Brand *string `json:"brand"`
  6. Cid int64 `json:"cid"`
  7. City *string `json:"city"`
  8. Cname interface{} `json:"cname"`
  9. Country *string `json:"country"`
  10. Deviceid *string `json:"deviceid"`
  11. Devnickname *string `json:"devnickname"`
  12. Gender *int64 `json:"gender"`
  13. Groupid interface{} `json:"groupid"`
  14. ID *int64 `json:"id"`
  15. Isonline *int64 `json:"isonline"`
  16. LoginTime *int64 `json:"login_time"`
  17. ModifyTime *int64 `json:"modify_time"`
  18. Module *string `json:"module"`
  19. Province *string `json:"province"`
  20. Snumber *int64 `json:"snumber"`
  21. Wechatid *string `json:"wechatid"`
  22. Wechatnick *string `json:"wechatnick"`
  23. Wechatno *string `json:"wechatno"`
  24. }
  25. type WorkPhoneGetWeChatsResp struct {
  26. Code int64 `json:"code"`
  27. Data []WorkPhoneWeChat `json:"data"`
  28. Msg string `json:"msg"`
  29. }
  30. type FindContactTaskResultNoticeMessageWrapper struct {
  31. WeChatId string `json:"WeChatId"`
  32. SearchText string `json:"SearchText"`
  33. Success bool `json:"Success"`
  34. UserName string `json:"UserName"`
  35. NickName string `json:"NickName"`
  36. Gender string `json:"Gender"`
  37. Province string `json:"Province"`
  38. City string `json:"City"`
  39. Avatar string `json:"Avatar"`
  40. }