We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12dbdd1 + e029523 commit 2ab811fCopy full SHA for 2ab811f
src/Message/RefundOrderRequest.php
@@ -42,6 +42,7 @@ public function getData()
42
'refund_fee' => $this->getRefundFee(),
43
'refund_fee_type' => $this->getRefundFee(),//<>
44
'op_user_id' => $this->getOpUserId() ?: $this->getMchId(),
45
+ 'refund_account' => $this->getRefundAccount(),
46
'nonce_str' => md5(uniqid()),
47
];
48
@@ -52,6 +53,22 @@ public function getData()
52
53
return $data;
54
}
55
56
+ /**
57
+ * @return mixed
58
+ */
59
+ public function getRefundAccount()
60
+ {
61
+ return $this->getParameter('refund_account');
62
+ }
63
+
64
65
+ * @param mixed $refundAccount
66
67
+ public function setRefundAccount($refundAccount)
68
69
+ $this->setParameter('refund_account', $refundAccount);
70
71
72
73
/**
74
* @return mixed
0 commit comments