Skip to content

Commit 2fd0009

Browse files
committed
Generated php 2022-08-09 for Cloudauth-intl.
1 parent 5dd321a commit 2fd0009

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-08-07 Version: 1.0.15
2+
- Generated php 2022-08-09 for Cloudauth-intl.
3+
14
2023-07-19 Version: 1.0.14
25
- Support ekyc idcard.
36

src/Cloudauthintl.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,9 @@ public function fraudResultCallBackWithOptions($request, $runtime)
706706
if (!Utils::isUnset($request->certifyId)) {
707707
$query['CertifyId'] = $request->certifyId;
708708
}
709+
if (!Utils::isUnset($request->extParams)) {
710+
$query['ExtParams'] = $request->extParams;
711+
}
709712
if (!Utils::isUnset($request->resultCode)) {
710713
$query['ResultCode'] = $request->resultCode;
711714
}

src/Models/FraudResultCallBackRequest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ class FraudResultCallBackRequest extends Model
1515
*/
1616
public $certifyId;
1717

18+
/**
19+
* @var string
20+
*/
21+
public $extParams;
22+
1823
/**
1924
* @example PASS
2025
*
@@ -30,6 +35,7 @@ class FraudResultCallBackRequest extends Model
3035
public $verifyDeployEnv;
3136
protected $_name = [
3237
'certifyId' => 'CertifyId',
38+
'extParams' => 'ExtParams',
3339
'resultCode' => 'ResultCode',
3440
'verifyDeployEnv' => 'VerifyDeployEnv',
3541
];
@@ -44,6 +50,9 @@ public function toMap()
4450
if (null !== $this->certifyId) {
4551
$res['CertifyId'] = $this->certifyId;
4652
}
53+
if (null !== $this->extParams) {
54+
$res['ExtParams'] = $this->extParams;
55+
}
4756
if (null !== $this->resultCode) {
4857
$res['ResultCode'] = $this->resultCode;
4958
}
@@ -65,6 +74,9 @@ public static function fromMap($map = [])
6574
if (isset($map['CertifyId'])) {
6675
$model->certifyId = $map['CertifyId'];
6776
}
77+
if (isset($map['ExtParams'])) {
78+
$model->extParams = $map['ExtParams'];
79+
}
6880
if (isset($map['ResultCode'])) {
6981
$model->resultCode = $map['ResultCode'];
7082
}

0 commit comments

Comments
 (0)