TaobaoTbkRtaConsumerMatchStrategyResultList.cs 709 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3197.Domain;
  5. public class TaobaoTbkRtaConsumerMatchStrategyResultList
  6. {
  7. /*
  8. 策略ID
  9. */
  10. private string? strategyId;
  11. /*
  12. 状态:1-符合活动要求 ,3-用户不匹配活动,4-系统异常,6-策略ID不存在,7-策略ID无效
  13. */
  14. private string? status;
  15. [JsonPropertyName("strategy_id")]
  16. public string? StrategyId
  17. {
  18. get => strategyId;
  19. set => this.strategyId = value;
  20. }
  21. [JsonPropertyName("status")]
  22. public string? Status
  23. {
  24. get => status;
  25. set => this.status = value;
  26. }
  27. }