| 12345678910111213141516171819202122232425 |
- 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<TaobaoTbkItemInfoUpgradeGetTbkItemDetail>? results;
- [JsonPropertyName("results")]
- public IList<TaobaoTbkItemInfoUpgradeGetTbkItemDetail>? Results
- {
- get => results;
- set => this.results = value;
- }
- }
|