| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- using Topsdk.Top.Ability1826.Domain;
- namespace Topsdk.Top.Ability1826.Response;
- public class TaobaoTbkDgVegasTljCreateResponse : AbstractTopApiResponse
- {
- /*
- result
- */
- private TaobaoTbkDgVegasTljCreateResult? result;
- [JsonPropertyName("result")]
- public TaobaoTbkDgVegasTljCreateResult? Result
- {
- get => result;
- set => this.result = value;
- }
- }
|