File tree Expand file tree Collapse file tree 3 files changed +71
-0
lines changed Expand file tree Collapse file tree 3 files changed +71
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,25 @@ class AlipayAuthApplyTokenRequest extends AlipayRequest{
9
9
public $ authCode ;
10
10
public $ refreshToken ;
11
11
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
+
12
31
13
32
/**
14
33
* @return mixed
Original file line number Diff line number Diff line change @@ -13,6 +13,25 @@ class AlipayAuthConsultRequest extends AlipayRequest{
13
13
public $ osType ;
14
14
public $ osVersion ;
15
15
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
+
16
35
17
36
/**
18
37
* @return mixed
Original file line number Diff line number Diff line change @@ -20,8 +20,41 @@ class AlipayPayRequest extends AlipayRequest{
20
20
public $ extendInfo ;
21
21
public $ creditPayPlan ;
22
22
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
+ }
23
41
24
42
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
+ }
25
58
26
59
/**
27
60
* @return mixed
You can’t perform that action at this time.
0 commit comments