Skip to content

Commit 573b6ea

Browse files
authored
Merge pull request #25 from alipay/feature-250205
支付、查询、支付结果通知新增卡相关信息字段
2 parents c75d0c0 + f9e9d54 commit 573b6ea

File tree

5 files changed

+173
-2
lines changed

5 files changed

+173
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.4.2 - 2025-02-05
4+
* [#25](https://github.com/alipay/global-open-sdk-php/pull/25) feature-250205
5+
- 支付、查询、支付结果通知新增卡相关信息字段
6+
37
## 1.4.1 - 2025-01-06
48
* [#24](https://github.com/alipay/global-open-sdk-php/pull/24) feature-250106
59
- 订阅支付新增“更新接口”

README.md

+1-1
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.4.1
4+
Releass ^1.4.2
55
Copyright:Ant financial services group
66
```
77

init.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
require __DIR__ . '/request/subscription/AlipaySubscriptionUpdateRequest.php';
4141
require __DIR__ . '/request/subscription/AlipaySubscriptionChangeRequest.php';
4242
require __DIR__ . '/request/subscription/AlipaySubscriptionCreateRequest.php';
43-
require __DIR__ . '/request/subscription/AlipaySubscriptionUpdateRequest.php';
43+
require __DIR__ . '/request/subscription/AlipaySubscriptionCancelRequest.php';
4444

4545
//user
4646
require __DIR__ . '/request/users/AlipayInitAuthenticationRequest.php';

model/Goods.php

+73
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,79 @@ class Goods
1212
public $goodsQuantity;
1313
public $goodsSkuName;
1414

15+
public $goodsUrl;
16+
public $deliveryMethodType;
17+
18+
public $goodsImageUrl;
19+
public $priceId;
20+
21+
/**
22+
* @return mixed
23+
*/
24+
public function getGoodsUrl()
25+
{
26+
return $this->goodsUrl;
27+
}
28+
29+
/**
30+
* @param mixed $goodsUrl
31+
*/
32+
public function setGoodsUrl($goodsUrl): void
33+
{
34+
$this->goodsUrl = $goodsUrl;
35+
}
36+
37+
/**
38+
* @return mixed
39+
*/
40+
public function getDeliveryMethodType()
41+
{
42+
return $this->deliveryMethodType;
43+
}
44+
45+
/**
46+
* @param mixed $deliveryMethodType
47+
*/
48+
public function setDeliveryMethodType($deliveryMethodType): void
49+
{
50+
$this->deliveryMethodType = $deliveryMethodType;
51+
}
52+
53+
/**
54+
* @return mixed
55+
*/
56+
public function getGoodsImageUrl()
57+
{
58+
return $this->goodsImageUrl;
59+
}
60+
61+
/**
62+
* @param mixed $goodsImageUrl
63+
*/
64+
public function setGoodsImageUrl($goodsImageUrl): void
65+
{
66+
$this->goodsImageUrl = $goodsImageUrl;
67+
}
68+
69+
/**
70+
* @return mixed
71+
*/
72+
public function getPriceId()
73+
{
74+
return $this->priceId;
75+
}
76+
77+
/**
78+
* @param mixed $priceId
79+
*/
80+
public function setPriceId($priceId): void
81+
{
82+
$this->priceId = $priceId;
83+
}
84+
85+
86+
87+
1588
/**
1689
* @return String
1790
*/

model/PaymentResultInfo.php

+94
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,100 @@ class PaymentResultInfo
2727

2828
public $creditPayPlan;
2929

30+
public $cardholderName;
31+
32+
public $cardBin;
33+
34+
public $lastFour;
35+
36+
public $expiryMonth;
37+
38+
public $expiryYear;
39+
40+
41+
42+
/**
43+
* @return mixed
44+
*/
45+
public function getCardholderName()
46+
{
47+
return $this->cardholderName;
48+
}
49+
50+
/**
51+
* @param mixed $cardholderName
52+
*/
53+
public function setCardholderName($cardholderName): void
54+
{
55+
$this->cardholderName = $cardholderName;
56+
}
57+
58+
/**
59+
* @return mixed
60+
*/
61+
public function getCardBin()
62+
{
63+
return $this->cardBin;
64+
}
65+
66+
/**
67+
* @param mixed $cardBin
68+
*/
69+
public function setCardBin($cardBin): void
70+
{
71+
$this->cardBin = $cardBin;
72+
}
73+
74+
/**
75+
* @return mixed
76+
*/
77+
public function getLastFour()
78+
{
79+
return $this->lastFour;
80+
}
81+
82+
/**
83+
* @param mixed $lastFour
84+
*/
85+
public function setLastFour($lastFour): void
86+
{
87+
$this->lastFour = $lastFour;
88+
}
89+
90+
/**
91+
* @return mixed
92+
*/
93+
public function getExpiryMonth()
94+
{
95+
return $this->expiryMonth;
96+
}
97+
98+
/**
99+
* @param mixed $expiryMonth
100+
*/
101+
public function setExpiryMonth($expiryMonth): void
102+
{
103+
$this->expiryMonth = $expiryMonth;
104+
}
105+
106+
/**
107+
* @return mixed
108+
*/
109+
public function getExpiryYear()
110+
{
111+
return $this->expiryYear;
112+
}
113+
114+
/**
115+
* @param mixed $expiryYear
116+
*/
117+
public function setExpiryYear($expiryYear): void
118+
{
119+
$this->expiryYear = $expiryYear;
120+
}
121+
122+
123+
30124
/**
31125
* @return mixed
32126
*/

0 commit comments

Comments
 (0)