Skip to content

Commit 64016aa

Browse files
authored
Merge pull request #16 from alipay/feature-241022
Feature 241022
2 parents 1b89899 + 946752f commit 64016aa

7 files changed

+150
-1
lines changed

CHANGELOG.md

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

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
38

49
## 1.3.3 - 2024-09-14
510
* [#14](https://github.com/alipay/global-open-sdk-php/pull/14) update pay

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```
22
Language:PHP
33
PHP version:5.4.7+
4-
Releass ^1.3.3
4+
Releass ^1.3.4
55
Copyright:Ant financial services group
66
```
77

model/AuthMetaData.php

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
}

model/CardPaymentMethodDetail.php

+21
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,27 @@ class CardPaymentMethodDetail
5050

5151
public $payerEmail;
5252

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+
5374
/**
5475
* @return mixed
5576
*/

model/Order.php

+40
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,46 @@ class Order
1818
public $lodging;
1919
public $gaming;
2020

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+
2161
/**
2262
* @return String
2363
*/

request/auth/AlipayAuthConsultRequest.php

+20
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,31 @@ class AlipayAuthConsultRequest extends \Request\AlipayRequest
1717
public $extendInfo;
1818
public $merchantRegion;
1919

20+
public $authMetaData;
21+
2022
function __construct()
2123
{
2224
$this->setPath(\Model\AntomPathConstants::AUTH_CONSULT_PATH);
2325
}
2426

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+
2545
/**
2646
* @return mixed
2747
*/

request/vaulting/AlipayVaultingSessionRequest.php

+20
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,32 @@ class AlipayVaultingSessionRequest extends AlipayRequest
1616

1717
public $merchantRegion;
1818

19+
public $is3DSAuthentication;
20+
1921

2022
function __construct()
2123
{
2224
$this->setPath(AntomPathConstants::CREATE_VAULTING_SESSION_PATH);
2325
}
2426

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+
2545
/**
2646
* @return mixed
2747
*/

0 commit comments

Comments
 (0)