TaobaoTbkShopGetNTbkShop.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability370.Domain;
  5. public class TaobaoTbkShopGetNTbkShop
  6. {
  7. /*
  8. 店铺地址
  9. */
  10. private string? shopUrl;
  11. /*
  12. 卖家昵称
  13. */
  14. private string? sellerNick;
  15. /*
  16. 店铺类型,B:天猫,C:淘宝
  17. */
  18. private string? shopType;
  19. /*
  20. 店铺名称
  21. */
  22. private string? shopTitle;
  23. /*
  24. 卖家ID
  25. */
  26. private long? userId;
  27. /*
  28. 店标图片
  29. */
  30. private string? pictUrl;
  31. [JsonPropertyName("shop_url")]
  32. public string? ShopUrl
  33. {
  34. get => shopUrl;
  35. set => this.shopUrl = value;
  36. }
  37. [JsonPropertyName("seller_nick")]
  38. public string? SellerNick
  39. {
  40. get => sellerNick;
  41. set => this.sellerNick = value;
  42. }
  43. [JsonPropertyName("shop_type")]
  44. public string? ShopType
  45. {
  46. get => shopType;
  47. set => this.shopType = value;
  48. }
  49. [JsonPropertyName("shop_title")]
  50. public string? ShopTitle
  51. {
  52. get => shopTitle;
  53. set => this.shopTitle = value;
  54. }
  55. [JsonPropertyName("user_id")]
  56. public long? UserId
  57. {
  58. get => userId;
  59. set => this.userId = value;
  60. }
  61. [JsonPropertyName("pict_url")]
  62. public string? PictUrl
  63. {
  64. get => pictUrl;
  65. set => this.pictUrl = value;
  66. }
  67. }