| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- using Topsdk.Top.Ability3152.Domain;
- namespace Topsdk.Top.Ability3152.Response;
- public class TaobaoTbkThorMfrsPromotionQueryResponse : AbstractTopApiResponse
- {
- /*
- 原商品信息
- */
- private TaobaoTbkThorMfrsPromotionQueryManufacturerItemsDto? sourceItem;
- /*
- 分页大小
- */
- private string? pageSize;
- /*
- 页码
- */
- private string? page;
- /*
- 请求状态码
- */
- private string? status;
- /*
- 异常描述
- */
- private string? desc;
- /*
- 识图推荐商品信息
- */
- private IList<TaobaoTbkThorMfrsPromotionQueryManufacturerItemsDto>? itemList;
- [JsonPropertyName("source_item")]
- public TaobaoTbkThorMfrsPromotionQueryManufacturerItemsDto? SourceItem
- {
- get => sourceItem;
- set => this.sourceItem = value;
- }
- [JsonPropertyName("page_size")]
- public string? PageSize
- {
- get => pageSize;
- set => this.pageSize = value;
- }
- [JsonPropertyName("page")]
- public string? Page
- {
- get => page;
- set => this.page = value;
- }
- [JsonPropertyName("status")]
- public string? Status
- {
- get => status;
- set => this.status = value;
- }
- [JsonPropertyName("desc")]
- public string? Desc
- {
- get => desc;
- set => this.desc = value;
- }
- [JsonPropertyName("item_list")]
- public IList<TaobaoTbkThorMfrsPromotionQueryManufacturerItemsDto>? ItemList
- {
- get => itemList;
- set => this.itemList = value;
- }
- }
|