using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; using Topsdk.Top.Ability369.Domain; namespace Topsdk.Top.Ability369.Response; public class TaobaoTbkDgOptimusPromotionResponse : AbstractTopApiResponse { /* resultList */ private IList? resultList; [JsonPropertyName("result_list")] public IList? ResultList { get => resultList; set => this.resultList = value; } }