TaobaoTbkThorMfrsPromotionQueryManufacturerLaunchOption.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3152.Domain;
  5. public class TaobaoTbkThorMfrsPromotionQueryManufacturerLaunchOption
  6. {
  7. /*
  8. 图片按照短边不超过320的方式等比例缩放,转字节流时按jpg格式,压缩率80进行转换
  9. */
  10. private string? img;
  11. /*
  12. 商品副标题
  13. */
  14. private string? subTitle;
  15. /*
  16. 场景类型
  17. */
  18. private string? sceneCode;
  19. /*
  20. OAID/手机号/imei
  21. */
  22. private string? uniqueIdType;
  23. /*
  24. 价格
  25. */
  26. private string? price;
  27. /*
  28. 媒体pid
  29. */
  30. private string? pid;
  31. /*
  32. 商品标题
  33. */
  34. private string? title;
  35. /*
  36. sku名
  37. */
  38. private string? sku;
  39. /*
  40. 唯一标识
  41. */
  42. private string? uniqueId;
  43. /*
  44. 商品链接
  45. */
  46. private string? url;
  47. /*
  48. 淘口令
  49. */
  50. private string? tbpwd;
  51. /*
  52. 子场景码:Hivision(拍照识图)、Hitoch(双指按压)
  53. */
  54. private string? sceneSubCode;
  55. /*
  56. 如手淘、京东、抖音、快手
  57. */
  58. private string? from;
  59. /*
  60. 扩展字段
  61. */
  62. private string? variableMap;
  63. [JsonPropertyName("img")]
  64. public string? Img
  65. {
  66. get => img;
  67. set => this.img = value;
  68. }
  69. [JsonPropertyName("sub_title")]
  70. public string? SubTitle
  71. {
  72. get => subTitle;
  73. set => this.subTitle = value;
  74. }
  75. [JsonPropertyName("scene_code")]
  76. public string? SceneCode
  77. {
  78. get => sceneCode;
  79. set => this.sceneCode = value;
  80. }
  81. [JsonPropertyName("unique_id_type")]
  82. public string? UniqueIdType
  83. {
  84. get => uniqueIdType;
  85. set => this.uniqueIdType = value;
  86. }
  87. [JsonPropertyName("price")]
  88. public string? Price
  89. {
  90. get => price;
  91. set => this.price = value;
  92. }
  93. [JsonPropertyName("pid")]
  94. public string? Pid
  95. {
  96. get => pid;
  97. set => this.pid = value;
  98. }
  99. [JsonPropertyName("title")]
  100. public string? Title
  101. {
  102. get => title;
  103. set => this.title = value;
  104. }
  105. [JsonPropertyName("sku")]
  106. public string? Sku
  107. {
  108. get => sku;
  109. set => this.sku = value;
  110. }
  111. [JsonPropertyName("unique_id")]
  112. public string? UniqueId
  113. {
  114. get => uniqueId;
  115. set => this.uniqueId = value;
  116. }
  117. [JsonPropertyName("url")]
  118. public string? Url
  119. {
  120. get => url;
  121. set => this.url = value;
  122. }
  123. [JsonPropertyName("tbpwd")]
  124. public string? Tbpwd
  125. {
  126. get => tbpwd;
  127. set => this.tbpwd = value;
  128. }
  129. [JsonPropertyName("scene_sub_code")]
  130. public string? SceneSubCode
  131. {
  132. get => sceneSubCode;
  133. set => this.sceneSubCode = value;
  134. }
  135. [JsonPropertyName("from")]
  136. public string? From
  137. {
  138. get => from;
  139. set => this.from = value;
  140. }
  141. [JsonPropertyName("variable_map")]
  142. public string? VariableMap
  143. {
  144. get => variableMap;
  145. set => this.variableMap = value;
  146. }
  147. }