TaobaoKfcKeywordSearchResponse.cs 586 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Defaultability.Domain;
  5. namespace Topsdk.Top.Defaultability.Response;
  6. public class TaobaoKfcKeywordSearchResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. KFC 关键词过滤匹配结果
  10. */
  11. private TaobaoKfcKeywordSearchKfcSearchResult? kfcSearchResult;
  12. [JsonPropertyName("kfc_search_result")]
  13. public TaobaoKfcKeywordSearchKfcSearchResult? KfcSearchResult
  14. {
  15. get => kfcSearchResult;
  16. set => this.kfcSearchResult = value;
  17. }
  18. }