TaobaoTbkRtaConsumerMatchResultlist.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3197.Domain;
  5. public class TaobaoTbkRtaConsumerMatchResultlist
  6. {
  7. /*
  8. 活动id
  9. */
  10. private string? offerId;
  11. /*
  12. 活动状态:1-符合活动要求,2-淘客无活动权限,3-用户不匹配活动,4-系统异常,5-活动不存在
  13. */
  14. private string? status;
  15. /*
  16. 推广链接
  17. */
  18. private string? clickUrl;
  19. /*
  20. 微信小程序路径
  21. */
  22. private string? wxMiniprogramPath;
  23. /*
  24. 微信小程序码
  25. */
  26. private string? wxQrcodeUrl;
  27. [JsonPropertyName("offer_id")]
  28. public string? OfferId
  29. {
  30. get => offerId;
  31. set => this.offerId = value;
  32. }
  33. [JsonPropertyName("status")]
  34. public string? Status
  35. {
  36. get => status;
  37. set => this.status = value;
  38. }
  39. [JsonPropertyName("click_url")]
  40. public string? ClickUrl
  41. {
  42. get => clickUrl;
  43. set => this.clickUrl = value;
  44. }
  45. [JsonPropertyName("wx_miniprogram_path")]
  46. public string? WxMiniprogramPath
  47. {
  48. get => wxMiniprogramPath;
  49. set => this.wxMiniprogramPath = value;
  50. }
  51. [JsonPropertyName("wx_qrcode_url")]
  52. public string? WxQrcodeUrl
  53. {
  54. get => wxQrcodeUrl;
  55. set => this.wxQrcodeUrl = value;
  56. }
  57. }