Skip to content

Commit 76ebf49

Browse files
committed
拒付通知增加争议类型
1 parent 0813f37 commit 76ebf49

File tree

4 files changed

+28
-20
lines changed

4 files changed

+28
-20
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.3.8 - 2024-12-02
4+
* [#21](https://github.com/alipay/global-open-sdk-php/pull/21) feature-2411202
5+
- update AlipayDisputeNotify
6+
- update AlipayPayQueryResponse
7+
8+
39
## 1.3.7 - 2024-11-25
410
* [#20](https://github.com/alipay/global-open-sdk-php/pull/20) feature-241125
511
- update AlipayPayResultNotify

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```
22
Language:PHP
33
PHP version:5.6.40+
4-
Releass ^1.3.7
4+
Releass ^1.3.8
55
Copyright:Ant financial services group
66
```
77

request/notify/AlipayDisputeNotify.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,26 @@ class AlipayDisputeNotify extends \Request\notify\AlipayNotify
2222
public $disputeAcceptReason;
2323
public $disputeAcceptTime;
2424

25+
public $disputeType;
26+
27+
/**
28+
* @return mixed
29+
*/
30+
public function getDisputeType()
31+
{
32+
return $this->disputeType;
33+
}
34+
35+
/**
36+
* @param mixed $disputeType
37+
*/
38+
public function setDisputeType($disputeType)
39+
{
40+
$this->disputeType = $disputeType;
41+
}
42+
43+
44+
2545
/**
2646
* @return mixed
2747
*/

request/pay/AlipayPayQueryRequest.php

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,14 @@ class AlipayPayQueryRequest extends AlipayRequest
1212
public $paymentId;
1313

1414
public $merchantAccountId;
15-
public $paymentMethodType;
15+
1616

1717

1818
function __construct()
1919
{
2020
$this->setPath(AntomPathConstants::INQUIRY_PAYMENT_PATH);
2121
}
2222

23-
/**
24-
* @return mixed
25-
*/
26-
public function getPaymentMethodType()
27-
{
28-
return $this->paymentMethodType;
29-
}
30-
31-
/**
32-
* @param mixed $paymentMethodType
33-
*/
34-
public function setPaymentMethodType($paymentMethodType)
35-
{
36-
$this->paymentMethodType = $paymentMethodType;
37-
}
38-
39-
40-
4123
/**
4224
* @return mixed
4325
*/

0 commit comments

Comments
 (0)