面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
790 B

  1. package md
  2. //UserProfileResponse is userprofile response
  3. type UserProfileResponse struct {
  4. UserName string `json:"username"`
  5. Avatar string `json:"avatar"`
  6. InviteCode string `json:"InviteCode"`
  7. UserLvName string `json:"user_lv_name"`
  8. UserLvIcon string `json:"user_lv_icon"`
  9. IsTaobaoAuth bool `json:"is_taobao_auth"`
  10. IsWxTaobaoAuth bool `json:"is_wx_taobao_auth"`
  11. GridViews []UserProfileResponseGridView `json:"grid_views"`
  12. }
  13. //UserProfileResponseGridView is for UserProfileResponse
  14. type UserProfileResponseGridView struct {
  15. Name string `json:"name"`
  16. Value string `json:"value"`
  17. }