| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- using Topsdk.Top.Ability2138.Domain;
- namespace Topsdk.Top.Ability2138.Response;
- public class TaobaoTbkDgNewuserOrderGetResponse : AbstractTopApiResponse
- {
- /*
- data
- */
- private TaobaoTbkDgNewuserOrderGetResults? results;
- [JsonPropertyName("results")]
- public TaobaoTbkDgNewuserOrderGetResults? Results
- {
- get => results;
- set => this.results = value;
- }
- }
|