using System.Text.Json.Serialization; using System.Collections.Generic; using Topsdk.Util; namespace Topsdk.Top.Ability3197.Domain; public class TaobaoTbkRtaConsumerMatchData { /* 返回结果列表 */ private IList? resultList; /* 策略ID的匹配结果,仅在入参strategy_id_list字段非空时返回 */ private IList? strategyResultList; [JsonPropertyName("result_list")] public IList? ResultList { get => resultList; set => this.resultList = value; } [JsonPropertyName("strategy_result_list")] public IList? StrategyResultList { get => strategyResultList; set => this.strategyResultList = value; } }