using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; using Topsdk.Top.Defaultability.Domain; namespace Topsdk.Top.Defaultability.Response; public class TaobaoKfcKeywordSearchResponse : AbstractTopApiResponse { /* KFC 关键词过滤匹配结果 */ private TaobaoKfcKeywordSearchKfcSearchResult? kfcSearchResult; [JsonPropertyName("kfc_search_result")] public TaobaoKfcKeywordSearchKfcSearchResult? KfcSearchResult { get => kfcSearchResult; set => this.kfcSearchResult = value; } }