File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/Models/InitializeResponseBody Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ 2022-08-15 Version: 1.0.4
2+ - Support ekyc.
3+
142022-08-12 Version: 1.0.3
25- Support checkResult for ekyc.
36
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments