using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; using Topsdk.Top.Ability373.Domain; namespace Topsdk.Top.Ability373.Response; public class TaobaoJuItemsSearchResponse : AbstractTopApiResponse { /* θΏ”ε›žη»“ζžœ */ private TaobaoJuItemsSearchPaginationResult? result; [JsonPropertyName("result")] public TaobaoJuItemsSearchPaginationResult? Result { get => result; set => this.result = value; } }