Skip to content

Commit e3ed310

Browse files
committed
Support ekyc.
1 parent 3e69ba1 commit e3ed310

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-08-15 Version: 1.0.4
2+
- Support ekyc.
3+
14
2022-08-12 Version: 1.0.3
25
- Support checkResult for ekyc.
36

src/Models/InitializeResponseBody/result.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ class result extends Model
1212
* @var string
1313
*/
1414
public $transactionId;
15+
16+
/**
17+
* @var string
18+
*/
19+
public $clientCfg;
1520
protected $_name = [
1621
'transactionId' => 'TransactionId',
22+
'clientCfg' => 'clientCfg',
1723
];
1824

1925
public function validate()
@@ -26,6 +32,9 @@ public function toMap()
2632
if (null !== $this->transactionId) {
2733
$res['TransactionId'] = $this->transactionId;
2834
}
35+
if (null !== $this->clientCfg) {
36+
$res['clientCfg'] = $this->clientCfg;
37+
}
2938

3039
return $res;
3140
}
@@ -41,6 +50,9 @@ public static function fromMap($map = [])
4150
if (isset($map['TransactionId'])) {
4251
$model->transactionId = $map['TransactionId'];
4352
}
53+
if (isset($map['clientCfg'])) {
54+
$model->clientCfg = $map['clientCfg'];
55+
}
4456

4557
return $model;
4658
}

0 commit comments

Comments
 (0)