tencentcloud-sdk-nodejs-intl-en 3.0.1120 → 3.0.1121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +46 -25
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +210 -351
- package/tencentcloud/ocr/v20181119/models.js +7 -0
- package/tencentcloud/ssl/v20191205/models.js +1133 -326
- package/tencentcloud/ssl/v20191205/ssl_client.js +10 -6
- package/tencentcloud/trtc/v20190722/models.js +10 -2
|
@@ -10059,6 +10059,12 @@ class RecognizeThaiPinkCardResponse extends AbstractModel {
|
|
|
10059
10059
|
*/
|
|
10060
10060
|
this.EnName = null;
|
|
10061
10061
|
|
|
10062
|
+
/**
|
|
10063
|
+
* Surname in Thai
|
|
10064
|
+
* @type {string || null}
|
|
10065
|
+
*/
|
|
10066
|
+
this.ThaiSurName = null;
|
|
10067
|
+
|
|
10062
10068
|
/**
|
|
10063
10069
|
* Date of birth in Thai
|
|
10064
10070
|
* @type {string || null}
|
|
@@ -10151,6 +10157,7 @@ class RecognizeThaiPinkCardResponse extends AbstractModel {
|
|
|
10151
10157
|
this.IDNumber = 'IDNumber' in params ? params.IDNumber : null;
|
|
10152
10158
|
this.ThaiName = 'ThaiName' in params ? params.ThaiName : null;
|
|
10153
10159
|
this.EnName = 'EnName' in params ? params.EnName : null;
|
|
10160
|
+
this.ThaiSurName = 'ThaiSurName' in params ? params.ThaiSurName : null;
|
|
10154
10161
|
this.ThaiDOB = 'ThaiDOB' in params ? params.ThaiDOB : null;
|
|
10155
10162
|
this.EnDOB = 'EnDOB' in params ? params.EnDOB : null;
|
|
10156
10163
|
this.PhotoNumber = 'PhotoNumber' in params ? params.PhotoNumber : null;
|