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.
1 parent 58b144c commit 40204feCopy full SHA for 40204fe
src/Messages/RefundRequest.php
@@ -33,7 +33,7 @@ public function getData(): array
33
34
$data['Transaction'] = array(
35
'Type' => 'refund',
36
- 'Amount' => $this->getAmountInteger(),
+ 'Amount' => (int)$this->getAmount(),
37
'CurrencyCode' => $this->currency_list[$this->getCurrency()]
38
);
39
src/Messages/VoidRequest.php
@@ -34,7 +34,7 @@ public function getData(): array
'Type' => 'void',
'InstallmentCnt' => $this->getInstallment(),
'CurrencyCode' => $this->currency_list[$this->getCurrency()],
'CardholderPresentCode' => "0",
40
'MotoInd' => "N"
0 commit comments