TaobaoTbkDgGeneralLinkConvertLinkInfoDTO.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgGeneralLinkConvertLinkInfoDTO
  6. {
  7. /*
  8. 二合一长链接
  9. */
  10. private string? couponLongUrl;
  11. /*
  12. 1—单品 2—店铺 3—会场 4-承接开放 5-优惠券 6-直播间 7-淘积木页
  13. */
  14. private long? materialType;
  15. /*
  16. CPS链接长链
  17. */
  18. private string? cpsLongUrl;
  19. /*
  20. CPS链接的短口令
  21. */
  22. private string? cpsShortTpwd;
  23. /*
  24. 1-联盟口令,2-主站口令。入参物料不为淘口令时,此字段返回null
  25. */
  26. private long? tkBizType;
  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? taoBrickUrl;
  55. /*
  56. 频道页二合一链接 目前支持淘金币
  57. */
  58. private string? couponChannelUrl;
  59. /*
  60. 频道页二合一口令 目前支持淘金币
  61. */
  62. private string? couponChannelTpwd;
  63. [JsonPropertyName("coupon_long_url")]
  64. public string? CouponLongUrl
  65. {
  66. get => couponLongUrl;
  67. set => this.couponLongUrl = value;
  68. }
  69. [JsonPropertyName("material_type")]
  70. public long? MaterialType
  71. {
  72. get => materialType;
  73. set => this.materialType = value;
  74. }
  75. [JsonPropertyName("cps_long_url")]
  76. public string? CpsLongUrl
  77. {
  78. get => cpsLongUrl;
  79. set => this.cpsLongUrl = value;
  80. }
  81. [JsonPropertyName("cps_short_tpwd")]
  82. public string? CpsShortTpwd
  83. {
  84. get => cpsShortTpwd;
  85. set => this.cpsShortTpwd = value;
  86. }
  87. [JsonPropertyName("tk_biz_type")]
  88. public long? TkBizType
  89. {
  90. get => tkBizType;
  91. set => this.tkBizType = value;
  92. }
  93. [JsonPropertyName("coupon_short_tpwd")]
  94. public string? CouponShortTpwd
  95. {
  96. get => couponShortTpwd;
  97. set => this.couponShortTpwd = value;
  98. }
  99. [JsonPropertyName("cps_short_url")]
  100. public string? CpsShortUrl
  101. {
  102. get => cpsShortUrl;
  103. set => this.cpsShortUrl = value;
  104. }
  105. [JsonPropertyName("coupon_short_url")]
  106. public string? CouponShortUrl
  107. {
  108. get => couponShortUrl;
  109. set => this.couponShortUrl = value;
  110. }
  111. [JsonPropertyName("coupon_full_tpwd")]
  112. public string? CouponFullTpwd
  113. {
  114. get => couponFullTpwd;
  115. set => this.couponFullTpwd = value;
  116. }
  117. [JsonPropertyName("cps_full_tpwd")]
  118. public string? CpsFullTpwd
  119. {
  120. get => cpsFullTpwd;
  121. set => this.cpsFullTpwd = value;
  122. }
  123. [JsonPropertyName("share_unit_url")]
  124. public string? ShareUnitUrl
  125. {
  126. get => shareUnitUrl;
  127. set => this.shareUnitUrl = value;
  128. }
  129. [JsonPropertyName("tao_brick_url")]
  130. public string? TaoBrickUrl
  131. {
  132. get => taoBrickUrl;
  133. set => this.taoBrickUrl = value;
  134. }
  135. [JsonPropertyName("coupon_channel_url")]
  136. public string? CouponChannelUrl
  137. {
  138. get => couponChannelUrl;
  139. set => this.couponChannelUrl = value;
  140. }
  141. [JsonPropertyName("coupon_channel_tpwd")]
  142. public string? CouponChannelTpwd
  143. {
  144. get => couponChannelTpwd;
  145. set => this.couponChannelTpwd = value;
  146. }
  147. }