Skip to content

Commit 3b4b3e6

Browse files
committed
Generated php 2022-08-09 for Cloudauth-intl.
1 parent 5abf1b0 commit 3b4b3e6

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-01-18 Version: 1.3.1
2+
- Generated php 2022-08-09 for Cloudauth-intl.
3+
14
2023-10-31 Version: 1.3.0
25
- Generated php 2022-08-09 for Cloudauth-intl.
36

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require": {
1313
"php": ">5.5",
1414
"alibabacloud/tea-utils": "^0.2.19",
15-
"alibabacloud/darabonba-openapi": "^0.2.8",
15+
"alibabacloud/darabonba-openapi": "^0.2.10",
1616
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
1717
"alibabacloud/endpoint-util": "^0.1.0"
1818
},

src/Cloudauthintl.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,6 +1132,9 @@ public function initializeWithOptions($request, $runtime)
11321132
if (!Utils::isUnset($request->idSpoof)) {
11331133
$query['IdSpoof'] = $request->idSpoof;
11341134
}
1135+
if (!Utils::isUnset($request->languageConfig)) {
1136+
$query['LanguageConfig'] = $request->languageConfig;
1137+
}
11351138
if (!Utils::isUnset($request->merchantBizId)) {
11361139
$query['MerchantBizId'] = $request->merchantBizId;
11371140
}

src/Models/InitializeRequest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ class InitializeRequest extends Model
7777
*/
7878
public $idSpoof;
7979

80+
/**
81+
* @var string
82+
*/
83+
public $languageConfig;
84+
8085
/**
8186
* @example e0c34a***353888
8287
*
@@ -172,6 +177,7 @@ class InitializeRequest extends Model
172177
'flowType' => 'FlowType',
173178
'idFaceQuality' => 'IdFaceQuality',
174179
'idSpoof' => 'IdSpoof',
180+
'languageConfig' => 'LanguageConfig',
175181
'merchantBizId' => 'MerchantBizId',
176182
'merchantUserId' => 'MerchantUserId',
177183
'metaInfo' => 'MetaInfo',
@@ -226,6 +232,9 @@ public function toMap()
226232
if (null !== $this->idSpoof) {
227233
$res['IdSpoof'] = $this->idSpoof;
228234
}
235+
if (null !== $this->languageConfig) {
236+
$res['LanguageConfig'] = $this->languageConfig;
237+
}
229238
if (null !== $this->merchantBizId) {
230239
$res['MerchantBizId'] = $this->merchantBizId;
231240
}
@@ -307,6 +316,9 @@ public static function fromMap($map = [])
307316
if (isset($map['IdSpoof'])) {
308317
$model->idSpoof = $map['IdSpoof'];
309318
}
319+
if (isset($map['LanguageConfig'])) {
320+
$model->languageConfig = $map['LanguageConfig'];
321+
}
310322
if (isset($map['MerchantBizId'])) {
311323
$model->merchantBizId = $map['MerchantBizId'];
312324
}

0 commit comments

Comments
 (0)