TaobaoTbkDgCpaActivityDetailResult.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3261.Domain;
  5. public class TaobaoTbkDgCpaActivityDetailResult
  6. {
  7. /*
  8. 错误代码
  9. */
  10. private string? bizErrorFeature;
  11. /*
  12. 返回素材id
  13. */
  14. private TaobaoTbkDgCpaActivityDetailPageResult? data;
  15. /*
  16. 是否成功
  17. */
  18. private bool? success;
  19. /*
  20. 结果码
  21. */
  22. private long? resultCode;
  23. /*
  24. 错误描述
  25. */
  26. private string? bizErrorDesc;
  27. /*
  28. 错误代码
  29. */
  30. private long? bizErrorCode;
  31. /*
  32. 结果信息
  33. */
  34. private string? resultMsg;
  35. [JsonPropertyName("biz_error_feature")]
  36. public string? BizErrorFeature
  37. {
  38. get => bizErrorFeature;
  39. set => this.bizErrorFeature = value;
  40. }
  41. [JsonPropertyName("data")]
  42. public TaobaoTbkDgCpaActivityDetailPageResult? Data
  43. {
  44. get => data;
  45. set => this.data = value;
  46. }
  47. [JsonPropertyName("success")]
  48. public bool? Success
  49. {
  50. get => success;
  51. set => this.success = value;
  52. }
  53. [JsonPropertyName("result_code")]
  54. public long? ResultCode
  55. {
  56. get => resultCode;
  57. set => this.resultCode = value;
  58. }
  59. [JsonPropertyName("biz_error_desc")]
  60. public string? BizErrorDesc
  61. {
  62. get => bizErrorDesc;
  63. set => this.bizErrorDesc = value;
  64. }
  65. [JsonPropertyName("biz_error_code")]
  66. public long? BizErrorCode
  67. {
  68. get => bizErrorCode;
  69. set => this.bizErrorCode = value;
  70. }
  71. [JsonPropertyName("result_msg")]
  72. public string? ResultMsg
  73. {
  74. get => resultMsg;
  75. set => this.resultMsg = value;
  76. }
  77. }