TaobaoTbkDgVegasTljCreateResponse.cs 499 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Ability1826.Domain;
  5. namespace Topsdk.Top.Ability1826.Response;
  6. public class TaobaoTbkDgVegasTljCreateResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. result
  10. */
  11. private TaobaoTbkDgVegasTljCreateResult? result;
  12. [JsonPropertyName("result")]
  13. public TaobaoTbkDgVegasTljCreateResult? Result
  14. {
  15. get => result;
  16. set => this.result = value;
  17. }
  18. }