TaobaoTbkDgVegasSendStatusResponse.cs 978 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Ability382.Domain;
  5. namespace Topsdk.Top.Ability382.Response;
  6. public class TaobaoTbkDgVegasSendStatusResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. 返回结果描述信息
  10. */
  11. private string? resultMsg;
  12. /*
  13. 返回结果封装对象
  14. */
  15. private TaobaoTbkDgVegasSendStatusData? data;
  16. /*
  17. 系统自动生成
  18. */
  19. private string? bizErrorDesc;
  20. [JsonPropertyName("result_msg")]
  21. public string? ResultMsg
  22. {
  23. get => resultMsg;
  24. set => this.resultMsg = value;
  25. }
  26. [JsonPropertyName("data")]
  27. public TaobaoTbkDgVegasSendStatusData? Data
  28. {
  29. get => data;
  30. set => this.data = value;
  31. }
  32. [JsonPropertyName("biz_error_desc")]
  33. public string? BizErrorDesc
  34. {
  35. get => bizErrorDesc;
  36. set => this.bizErrorDesc = value;
  37. }
  38. }