using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; using Topsdk.Top.Ability371.Domain; namespace Topsdk.Top.Ability371.Response; public class TaobaoTbkItemInfoUpgradeGetResponse : AbstractTopApiResponse { /* 仅淘宝客商品,字段值根据API赋权等级输出 */ private IList? results; [JsonPropertyName("results")] public IList? Results { get => results; set => this.results = value; } }