TaobaoTbkRelationRefundRpcResult.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability414.Domain;
  5. public class TaobaoTbkRelationRefundRpcResult
  6. {
  7. /*
  8. 返回信息
  9. */
  10. private string? resultMsg;
  11. /*
  12. 真正的业务数据结构
  13. */
  14. private TaobaoTbkRelationRefundPageResult? data;
  15. /*
  16. 接口返回值信息,跟rpc架构保持一致
  17. */
  18. private long? resultCode;
  19. /*
  20. 业务错误信息
  21. */
  22. private string? bizErrorDesc;
  23. /*
  24. 业务错误码 101, 102,103
  25. */
  26. private long? bizErrorCode;
  27. [JsonPropertyName("result_msg")]
  28. public string? ResultMsg
  29. {
  30. get => resultMsg;
  31. set => this.resultMsg = value;
  32. }
  33. [JsonPropertyName("data")]
  34. public TaobaoTbkRelationRefundPageResult? Data
  35. {
  36. get => data;
  37. set => this.data = value;
  38. }
  39. [JsonPropertyName("result_code")]
  40. public long? ResultCode
  41. {
  42. get => resultCode;
  43. set => this.resultCode = value;
  44. }
  45. [JsonPropertyName("biz_error_desc")]
  46. public string? BizErrorDesc
  47. {
  48. get => bizErrorDesc;
  49. set => this.bizErrorDesc = value;
  50. }
  51. [JsonPropertyName("biz_error_code")]
  52. public long? BizErrorCode
  53. {
  54. get => bizErrorCode;
  55. set => this.bizErrorCode = value;
  56. }
  57. }