TaobaoTbkDgGeneralLinkConvertItemLinkInfoDTO.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgGeneralLinkConvertItemLinkInfoDTO
  6. {
  7. /*
  8. 二合一长链接
  9. */
  10. private string? couponLongUrl;
  11. /*
  12. 1—单品 2—店铺 3—会场
  13. */
  14. private long? materialType;
  15. /*
  16. 商品ID
  17. */
  18. private string? itemId;
  19. /*
  20. CPS链接长链
  21. */
  22. private string? cpsLongUrl;
  23. /*
  24. CPS链接的短口令
  25. */
  26. private string? cpsShortTpwd;
  27. /*
  28. 二合一链接的短口令
  29. */
  30. private string? couponShortTpwd;
  31. /*
  32. CPS链接短链
  33. */
  34. private string? cpsShortUrl;
  35. /*
  36. 二合一链接长链
  37. */
  38. private string? couponShortUrl;
  39. /*
  40. 二合一链接的长口令
  41. */
  42. private string? couponFullTpwd;
  43. /*
  44. CPS链接的长口令
  45. */
  46. private string? cpsFullTpwd;
  47. /*
  48. 种草页链接,定向开放
  49. */
  50. private string? shareUnitUrl;
  51. /*
  52. 频道页二合一链接 目前支持淘金币
  53. */
  54. private string? couponChannelUrl;
  55. /*
  56. 频道页二合一口令 目前支持淘金币
  57. */
  58. private string? couponChannelTpwd;
  59. [JsonPropertyName("coupon_long_url")]
  60. public string? CouponLongUrl
  61. {
  62. get => couponLongUrl;
  63. set => this.couponLongUrl = value;
  64. }
  65. [JsonPropertyName("material_type")]
  66. public long? MaterialType
  67. {
  68. get => materialType;
  69. set => this.materialType = value;
  70. }
  71. [JsonPropertyName("item_id")]
  72. public string? ItemId
  73. {
  74. get => itemId;
  75. set => this.itemId = value;
  76. }
  77. [JsonPropertyName("cps_long_url")]
  78. public string? CpsLongUrl
  79. {
  80. get => cpsLongUrl;
  81. set => this.cpsLongUrl = value;
  82. }
  83. [JsonPropertyName("cps_short_tpwd")]
  84. public string? CpsShortTpwd
  85. {
  86. get => cpsShortTpwd;
  87. set => this.cpsShortTpwd = value;
  88. }
  89. [JsonPropertyName("coupon_short_tpwd")]
  90. public string? CouponShortTpwd
  91. {
  92. get => couponShortTpwd;
  93. set => this.couponShortTpwd = value;
  94. }
  95. [JsonPropertyName("cps_short_url")]
  96. public string? CpsShortUrl
  97. {
  98. get => cpsShortUrl;
  99. set => this.cpsShortUrl = value;
  100. }
  101. [JsonPropertyName("coupon_short_url")]
  102. public string? CouponShortUrl
  103. {
  104. get => couponShortUrl;
  105. set => this.couponShortUrl = value;
  106. }
  107. [JsonPropertyName("coupon_full_tpwd")]
  108. public string? CouponFullTpwd
  109. {
  110. get => couponFullTpwd;
  111. set => this.couponFullTpwd = value;
  112. }
  113. [JsonPropertyName("cps_full_tpwd")]
  114. public string? CpsFullTpwd
  115. {
  116. get => cpsFullTpwd;
  117. set => this.cpsFullTpwd = value;
  118. }
  119. [JsonPropertyName("share_unit_url")]
  120. public string? ShareUnitUrl
  121. {
  122. get => shareUnitUrl;
  123. set => this.shareUnitUrl = value;
  124. }
  125. [JsonPropertyName("coupon_channel_url")]
  126. public string? CouponChannelUrl
  127. {
  128. get => couponChannelUrl;
  129. set => this.couponChannelUrl = value;
  130. }
  131. [JsonPropertyName("coupon_channel_tpwd")]
  132. public string? CouponChannelTpwd
  133. {
  134. get => couponChannelTpwd;
  135. set => this.couponChannelTpwd = value;
  136. }
  137. }