File tree 7 files changed +150
-1
lines changed
7 files changed +150
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.3.4 - 2024-10-21
4
+ * [ #15 ] ( https://github.com/alipay/global-open-sdk-php/pull/15 ) feature-241022
5
+ - add AlipayVaultingSessionRequest.is3DSAuthentication哈啰集成绑卡SDK
6
+ - add AlipayAuthConsultRequest.authMetaData AE企业支付宝代扣集成方案
7
+ - add Boolean request.order.needDeclaration
3
8
4
9
## 1.3.3 - 2024-09-14
5
10
* [ #14 ] ( https://github.com/alipay/global-open-sdk-php/pull/14 ) update pay
Original file line number Diff line number Diff line change 1
1
```
2
2
Language:PHP
3
3
PHP version:5.4.7+
4
- Releass ^1.3.3
4
+ Releass ^1.3.4
5
5
Copyright:Ant financial services group
6
6
```
7
7
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Model ;
4
+
5
+ class AuthMetaData
6
+ {
7
+ public $ accountHolderName ;
8
+ public $ accountHolderCertNo ;
9
+
10
+ /**
11
+ * @return mixed
12
+ */
13
+ public function getAccountHolderName ()
14
+ {
15
+ return $ this ->accountHolderName ;
16
+ }
17
+
18
+ /**
19
+ * @param mixed $accountHolderName
20
+ */
21
+ public function setAccountHolderName ($ accountHolderName ): void
22
+ {
23
+ $ this ->accountHolderName = $ accountHolderName ;
24
+ }
25
+
26
+ /**
27
+ * @return mixed
28
+ */
29
+ public function getAccountHolderCertNo ()
30
+ {
31
+ return $ this ->accountHolderCertNo ;
32
+ }
33
+
34
+ /**
35
+ * @param mixed $accountHolderCertNo
36
+ */
37
+ public function setAccountHolderCertNo ($ accountHolderCertNo ): void
38
+ {
39
+ $ this ->accountHolderCertNo = $ accountHolderCertNo ;
40
+ }
41
+
42
+
43
+ }
Original file line number Diff line number Diff line change @@ -50,6 +50,27 @@ class CardPaymentMethodDetail
50
50
51
51
public $ payerEmail ;
52
52
53
+ public $ networkTransactionId ;
54
+
55
+ /**
56
+ * @return mixed
57
+ */
58
+ public function getNetworkTransactionId ()
59
+ {
60
+ return $ this ->networkTransactionId ;
61
+ }
62
+
63
+ /**
64
+ * @param mixed $networkTransactionId
65
+ */
66
+ public function setNetworkTransactionId ($ networkTransactionId ): void
67
+ {
68
+ $ this ->networkTransactionId = $ networkTransactionId ;
69
+ }
70
+
71
+
72
+
73
+
53
74
/**
54
75
* @return mixed
55
76
*/
Original file line number Diff line number Diff line change @@ -18,6 +18,46 @@ class Order
18
18
public $ lodging ;
19
19
public $ gaming ;
20
20
21
+ public $ orderCreatedTime ;
22
+
23
+ public $ needDeclaration ;
24
+
25
+
26
+
27
+ /**
28
+ * @return mixed
29
+ */
30
+ public function getOrderCreatedTime ()
31
+ {
32
+ return $ this ->orderCreatedTime ;
33
+ }
34
+
35
+ /**
36
+ * @param mixed $orderCreatedTime
37
+ */
38
+ public function setOrderCreatedTime ($ orderCreatedTime ): void
39
+ {
40
+ $ this ->orderCreatedTime = $ orderCreatedTime ;
41
+ }
42
+
43
+ /**
44
+ * @return mixed
45
+ */
46
+ public function getNeedDeclaration ()
47
+ {
48
+ return $ this ->needDeclaration ;
49
+ }
50
+
51
+ /**
52
+ * @param mixed $needDeclaration
53
+ */
54
+ public function setNeedDeclaration ($ needDeclaration ): void
55
+ {
56
+ $ this ->needDeclaration = $ needDeclaration ;
57
+ }
58
+
59
+
60
+
21
61
/**
22
62
* @return String
23
63
*/
Original file line number Diff line number Diff line change @@ -17,11 +17,31 @@ class AlipayAuthConsultRequest extends \Request\AlipayRequest
17
17
public $ extendInfo ;
18
18
public $ merchantRegion ;
19
19
20
+ public $ authMetaData ;
21
+
20
22
function __construct ()
21
23
{
22
24
$ this ->setPath (\Model \AntomPathConstants::AUTH_CONSULT_PATH );
23
25
}
24
26
27
+ /**
28
+ * @return mixed
29
+ */
30
+ public function getAuthMetaData ()
31
+ {
32
+ return $ this ->authMetaData ;
33
+ }
34
+
35
+ /**
36
+ * @param mixed $authMetaData
37
+ */
38
+ public function setAuthMetaData ($ authMetaData ): void
39
+ {
40
+ $ this ->authMetaData = $ authMetaData ;
41
+ }
42
+
43
+
44
+
25
45
/**
26
46
* @return mixed
27
47
*/
Original file line number Diff line number Diff line change @@ -16,12 +16,32 @@ class AlipayVaultingSessionRequest extends AlipayRequest
16
16
17
17
public $ merchantRegion ;
18
18
19
+ public $ is3DSAuthentication ;
20
+
19
21
20
22
function __construct ()
21
23
{
22
24
$ this ->setPath (AntomPathConstants::CREATE_VAULTING_SESSION_PATH );
23
25
}
24
26
27
+ /**
28
+ * @return mixed
29
+ */
30
+ public function getIs3DSAuthentication ()
31
+ {
32
+ return $ this ->is3DSAuthentication ;
33
+ }
34
+
35
+ /**
36
+ * @param mixed $is3DSAuthentication
37
+ */
38
+ public function setIs3DSAuthentication ($ is3DSAuthentication ): void
39
+ {
40
+ $ this ->is3DSAuthentication = $ is3DSAuthentication ;
41
+ }
42
+
43
+
44
+
25
45
/**
26
46
* @return mixed
27
47
*/
You can’t perform that action at this time.
0 commit comments