Skip to content

Commit a1d86ad

Browse files
committed
add field
1 parent 8ecec90 commit a1d86ad

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

request/auth/AlipayAuthApplyTokenRequest.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@ class AlipayAuthApplyTokenRequest extends AlipayRequest{
99
public $authCode;
1010
public $refreshToken;
1111
public $extendInfo;
12+
public $merchantRegion;
13+
14+
/**
15+
* @return mixed
16+
*/
17+
public function getMerchantRegion()
18+
{
19+
return $this->merchantRegion;
20+
}
21+
22+
/**
23+
* @param mixed $merchantRegion
24+
*/
25+
public function setMerchantRegion($merchantRegion)
26+
{
27+
$this->merchantRegion = $merchantRegion;
28+
}
29+
30+
1231

1332
/**
1433
* @return mixed

request/auth/AlipayAuthConsultRequest.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@ class AlipayAuthConsultRequest extends AlipayRequest{
1313
public $osType;
1414
public $osVersion;
1515
public $extendInfo;
16+
public $merchantRegion;
17+
18+
/**
19+
* @return mixed
20+
*/
21+
public function getMerchantRegion()
22+
{
23+
return $this->merchantRegion;
24+
}
25+
26+
/**
27+
* @param mixed $merchantRegion
28+
*/
29+
public function setMerchantRegion($merchantRegion)
30+
{
31+
$this->merchantRegion = $merchantRegion;
32+
}
33+
34+
1635

1736
/**
1837
* @return mixed

request/pay/AlipayPayRequest.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,41 @@ class AlipayPayRequest extends AlipayRequest{
2020
public $extendInfo;
2121
public $creditPayPlan;
2222
public $settlementStrategy;
23+
public $appId;
24+
public $merchantRegion;
25+
26+
/**
27+
* @return mixed
28+
*/
29+
public function getAppId()
30+
{
31+
return $this->appId;
32+
}
33+
34+
/**
35+
* @param mixed $appId
36+
*/
37+
public function setAppId($appId)
38+
{
39+
$this->appId = $appId;
40+
}
2341

2442

43+
/**
44+
* @return mixed
45+
*/
46+
public function getMerchantRegion()
47+
{
48+
return $this->merchantRegion;
49+
}
50+
51+
/**
52+
* @param mixed $merchantRegion
53+
*/
54+
public function setMerchantRegion($merchantRegion)
55+
{
56+
$this->merchantRegion = $merchantRegion;
57+
}
2558

2659
/**
2760
* @return mixed

0 commit comments

Comments
 (0)