V2MerchantComplaintRequestCertificatesRequest.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 支付宝申诉请求凭证
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2MerchantComplaintRequestCertificatesRequest : BaseRequest
  11. {
  12. /**
  13. * 请求汇付流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求汇付时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 支付宝推送流水号
  22. */
  23. private string riskBizId;
  24. /**
  25. * 商户类型
  26. */
  27. private string merchantType;
  28. /**
  29. * 商户经营模式
  30. */
  31. private string operationType;
  32. /**
  33. * 收款应用场景
  34. */
  35. private string paymentScene;
  36. public override string getFunctionCode() {
  37. return FunctionCodeEnum.V2_MERCHANT_COMPLAINT_REQUEST_CERTIFICATES;
  38. }
  39. public V2MerchantComplaintRequestCertificatesRequest() {
  40. }
  41. public V2MerchantComplaintRequestCertificatesRequest(string reqSeqId, string reqDate, string riskBizId, string merchantType, string operationType, string paymentScene) {
  42. this.reqSeqId = reqSeqId;
  43. this.reqDate = reqDate;
  44. this.riskBizId = riskBizId;
  45. this.merchantType = merchantType;
  46. this.operationType = operationType;
  47. this.paymentScene = paymentScene;
  48. }
  49. public string getReqSeqId() {
  50. return reqSeqId;
  51. }
  52. public void setReqSeqId(string reqSeqId) {
  53. this.reqSeqId = reqSeqId;
  54. }
  55. public string getReqDate() {
  56. return reqDate;
  57. }
  58. public void setReqDate(string reqDate) {
  59. this.reqDate = reqDate;
  60. }
  61. public string getRiskBizId() {
  62. return riskBizId;
  63. }
  64. public void setRiskBizId(string riskBizId) {
  65. this.riskBizId = riskBizId;
  66. }
  67. public string getMerchantType() {
  68. return merchantType;
  69. }
  70. public void setMerchantType(string merchantType) {
  71. this.merchantType = merchantType;
  72. }
  73. public string getOperationType() {
  74. return operationType;
  75. }
  76. public void setOperationType(string operationType) {
  77. this.operationType = operationType;
  78. }
  79. public string getPaymentScene() {
  80. return paymentScene;
  81. }
  82. public void setPaymentScene(string paymentScene) {
  83. this.paymentScene = paymentScene;
  84. }
  85. }
  86. }