TaobaoTbkRelationRefundTopApiRefundRptOption.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability414.Domain;
  5. public class TaobaoTbkRelationRefundTopApiRefundRptOption
  6. {
  7. /*
  8. pagesize
  9. */
  10. private long? pageSize;
  11. /*
  12. 1-维权发起时间,2-订单结算时间(正向订单),3-维权完成时间,4-订单创建时间,5-订单更新时间
  13. */
  14. private long? searchType;
  15. /*
  16. 1 表示2方,2表示3方,0表示不限
  17. */
  18. private long? refundType;
  19. /*
  20. 开始时间
  21. */
  22. private DateTime? startTime;
  23. /*
  24. pagenumber
  25. */
  26. private long? pageNo;
  27. /*
  28. 1代表渠道关系id,2代表会员关系id
  29. */
  30. private long? bizType;
  31. [JsonPropertyName("page_size")]
  32. public long? PageSize
  33. {
  34. get => pageSize;
  35. set => this.pageSize = value;
  36. }
  37. [JsonPropertyName("search_type")]
  38. public long? SearchType
  39. {
  40. get => searchType;
  41. set => this.searchType = value;
  42. }
  43. [JsonPropertyName("refund_type")]
  44. public long? RefundType
  45. {
  46. get => refundType;
  47. set => this.refundType = value;
  48. }
  49. [JsonPropertyName("start_time")]
  50. public DateTime? StartTime
  51. {
  52. get => startTime;
  53. set => this.startTime = value;
  54. }
  55. [JsonPropertyName("page_no")]
  56. public long? PageNo
  57. {
  58. get => pageNo;
  59. set => this.pageNo = value;
  60. }
  61. [JsonPropertyName("biz_type")]
  62. public long? BizType
  63. {
  64. get => bizType;
  65. set => this.bizType = value;
  66. }
  67. }