面包店
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

userprofile.go 790 B

před 9 měsíci
12345678910111213141516171819
  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. }