TaobaoTbkRelationRefundPageResult.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability414.Domain;
  5. public class TaobaoTbkRelationRefundPageResult
  6. {
  7. /*
  8. pageNo
  9. */
  10. private string? pageNo;
  11. /*
  12. pageSize
  13. */
  14. private string? pageSize;
  15. /*
  16. 总值
  17. */
  18. private string? totalCount;
  19. /*
  20. 订单列表
  21. */
  22. private IList<TaobaoTbkRelationRefundResult>? results;
  23. [JsonPropertyName("page_no")]
  24. public string? PageNo
  25. {
  26. get => pageNo;
  27. set => this.pageNo = value;
  28. }
  29. [JsonPropertyName("page_size")]
  30. public string? PageSize
  31. {
  32. get => pageSize;
  33. set => this.pageSize = value;
  34. }
  35. [JsonPropertyName("total_count")]
  36. public string? TotalCount
  37. {
  38. get => totalCount;
  39. set => this.totalCount = value;
  40. }
  41. [JsonPropertyName("results")]
  42. public IList<TaobaoTbkRelationRefundResult>? Results
  43. {
  44. get => results;
  45. set => this.results = value;
  46. }
  47. }