tencentcloud-sdk-nodejs-intl-en 3.0.1365 → 3.0.1366
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/cynosdb/v20190107/models.js +75 -94
- package/tencentcloud/dlc/v20210125/dlc_client.js +15 -2
- package/tencentcloud/dlc/v20210125/models.js +272 -169
- package/tencentcloud/faceid/v20180301/faceid_client.js +28 -2
- package/tencentcloud/faceid/v20180301/models.js +294 -27
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +43 -28
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +410 -139
- package/tencentcloud/ocr/v20181119/models.js +12720 -37
- package/tencentcloud/ocr/v20181119/ocr_client.js +1157 -0
- package/tencentcloud/tdmysql/v20211122/models.js +6027 -896
- package/tencentcloud/tdmysql/v20211122/tdmysql_client.js +376 -111
|
@@ -676,30 +676,33 @@ class LivenessCompareResponse extends AbstractModel {
|
|
|
676
676
|
}
|
|
677
677
|
|
|
678
678
|
/**
|
|
679
|
-
*
|
|
679
|
+
* Philippines SSSID Card
|
|
680
680
|
* @class
|
|
681
681
|
*/
|
|
682
|
-
class
|
|
682
|
+
class PhilippinesSSSID extends AbstractModel {
|
|
683
683
|
constructor(){
|
|
684
684
|
super();
|
|
685
685
|
|
|
686
686
|
/**
|
|
687
|
-
*
|
|
687
|
+
* License number
|
|
688
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
688
689
|
* @type {string || null}
|
|
689
690
|
*/
|
|
690
|
-
this.
|
|
691
|
+
this.LicenseNumber = null;
|
|
691
692
|
|
|
692
693
|
/**
|
|
693
|
-
*
|
|
694
|
+
* Full name
|
|
695
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
694
696
|
* @type {string || null}
|
|
695
697
|
*/
|
|
696
|
-
this.
|
|
698
|
+
this.FullName = null;
|
|
697
699
|
|
|
698
700
|
/**
|
|
699
|
-
*
|
|
701
|
+
* Birthday
|
|
702
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
700
703
|
* @type {string || null}
|
|
701
704
|
*/
|
|
702
|
-
this.
|
|
705
|
+
this.Birthday = null;
|
|
703
706
|
|
|
704
707
|
}
|
|
705
708
|
|
|
@@ -710,9 +713,9 @@ class GenerateReflectSequenceResponse extends AbstractModel {
|
|
|
710
713
|
if (!params) {
|
|
711
714
|
return;
|
|
712
715
|
}
|
|
713
|
-
this.
|
|
714
|
-
this.
|
|
715
|
-
this.
|
|
716
|
+
this.LicenseNumber = 'LicenseNumber' in params ? params.LicenseNumber : null;
|
|
717
|
+
this.FullName = 'FullName' in params ? params.FullName : null;
|
|
718
|
+
this.Birthday = 'Birthday' in params ? params.Birthday : null;
|
|
716
719
|
|
|
717
720
|
}
|
|
718
721
|
}
|
|
@@ -4165,6 +4168,185 @@ class CheckBankCardInformationRequest extends AbstractModel {
|
|
|
4165
4168
|
}
|
|
4166
4169
|
}
|
|
4167
4170
|
|
|
4171
|
+
/**
|
|
4172
|
+
* GetWxNFCResult response structure.
|
|
4173
|
+
* @class
|
|
4174
|
+
*/
|
|
4175
|
+
class GetWxNFCResultResponse extends AbstractModel {
|
|
4176
|
+
constructor(){
|
|
4177
|
+
super();
|
|
4178
|
+
|
|
4179
|
+
/**
|
|
4180
|
+
* <p>NFC billing result code. Each successful NFC read is billed once (duplicate billing does not occur for repeated pull of the same NFC request). Permissible range of billing result codes:<br> 0: Read successful, billed<br>-1: Read fail, free of charge</p>
|
|
4181
|
+
* @type {string || null}
|
|
4182
|
+
*/
|
|
4183
|
+
this.ResultCode = null;
|
|
4184
|
+
|
|
4185
|
+
/**
|
|
4186
|
+
* <p>Identity card number</p>
|
|
4187
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4188
|
+
* @type {string || null}
|
|
4189
|
+
*/
|
|
4190
|
+
this.IdNum = null;
|
|
4191
|
+
|
|
4192
|
+
/**
|
|
4193
|
+
* <p>name</p>
|
|
4194
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4195
|
+
* @type {string || null}
|
|
4196
|
+
*/
|
|
4197
|
+
this.Name = null;
|
|
4198
|
+
|
|
4199
|
+
/**
|
|
4200
|
+
* <p>Portrait photo in the document</p>
|
|
4201
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4202
|
+
* @type {string || null}
|
|
4203
|
+
*/
|
|
4204
|
+
this.Picture = null;
|
|
4205
|
+
|
|
4206
|
+
/**
|
|
4207
|
+
* <p>Front photo of the identity document (portrait side)</p>
|
|
4208
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4209
|
+
* @type {string || null}
|
|
4210
|
+
*/
|
|
4211
|
+
this.IdCardFrontImg = null;
|
|
4212
|
+
|
|
4213
|
+
/**
|
|
4214
|
+
* <p>Photo of the back of an identity document (national emblem side)</p>
|
|
4215
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4216
|
+
* @type {string || null}
|
|
4217
|
+
*/
|
|
4218
|
+
this.IdCardBackImg = null;
|
|
4219
|
+
|
|
4220
|
+
/**
|
|
4221
|
+
* <p>Date of birth</p>
|
|
4222
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4223
|
+
* @type {string || null}
|
|
4224
|
+
*/
|
|
4225
|
+
this.BirthDate = null;
|
|
4226
|
+
|
|
4227
|
+
/**
|
|
4228
|
+
* <p>Validity start time</p>
|
|
4229
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4230
|
+
* @type {string || null}
|
|
4231
|
+
*/
|
|
4232
|
+
this.BeginTime = null;
|
|
4233
|
+
|
|
4234
|
+
/**
|
|
4235
|
+
* <p>Validity end time</p>
|
|
4236
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4237
|
+
* @type {string || null}
|
|
4238
|
+
*/
|
|
4239
|
+
this.EndTime = null;
|
|
4240
|
+
|
|
4241
|
+
/**
|
|
4242
|
+
* <p>Address</p>
|
|
4243
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4244
|
+
* @type {string || null}
|
|
4245
|
+
*/
|
|
4246
|
+
this.Address = null;
|
|
4247
|
+
|
|
4248
|
+
/**
|
|
4249
|
+
* <p>Ethnicity</p>
|
|
4250
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4251
|
+
* @type {string || null}
|
|
4252
|
+
*/
|
|
4253
|
+
this.Nation = null;
|
|
4254
|
+
|
|
4255
|
+
/**
|
|
4256
|
+
* <p>Gender</p>
|
|
4257
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4258
|
+
* @type {string || null}
|
|
4259
|
+
*/
|
|
4260
|
+
this.Sex = null;
|
|
4261
|
+
|
|
4262
|
+
/**
|
|
4263
|
+
* <p>Document type</p><p>Enumeration value:</p><ul><li>01: ID card</li><li>03: Chinese passport</li><li>06: Hong Kong and Macau travel permit</li><li>07: Taiwan travel permit</li><li>08: Foreign passport</li><li>13: Permanent residence permit for foreigners</li><li>14: Residence Permit for Hong Kong (China), Macao (China), and Taiwan (China) residents</li><li>15: Return Home Permit</li><li>16: Travel permit for Chinese mainland residents to Taiwan (China)</li><li>99: Other documents</li></ul>
|
|
4264
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4265
|
+
* @type {string || null}
|
|
4266
|
+
*/
|
|
4267
|
+
this.IdType = null;
|
|
4268
|
+
|
|
4269
|
+
/**
|
|
4270
|
+
* <p>English name</p>
|
|
4271
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4272
|
+
* @type {string || null}
|
|
4273
|
+
*/
|
|
4274
|
+
this.EnName = null;
|
|
4275
|
+
|
|
4276
|
+
/**
|
|
4277
|
+
* <p>Issuing authority</p>
|
|
4278
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4279
|
+
* @type {string || null}
|
|
4280
|
+
*/
|
|
4281
|
+
this.SigningOrganization = null;
|
|
4282
|
+
|
|
4283
|
+
/**
|
|
4284
|
+
* <p>Residence Permit for residents of Hong Kong (China), Macao (China) and Taiwan (China), passport number</p>
|
|
4285
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4286
|
+
* @type {string || null}
|
|
4287
|
+
*/
|
|
4288
|
+
this.OtherIdNum = null;
|
|
4289
|
+
|
|
4290
|
+
/**
|
|
4291
|
+
* <p>Travel document nationality</p>
|
|
4292
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4293
|
+
* @type {string || null}
|
|
4294
|
+
*/
|
|
4295
|
+
this.Nationality = null;
|
|
4296
|
+
|
|
4297
|
+
/**
|
|
4298
|
+
* <p>Characters 29 to 42 in the second line of the machine-readable zone of the travel document</p>
|
|
4299
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4300
|
+
* @type {string || null}
|
|
4301
|
+
*/
|
|
4302
|
+
this.PersonalNumber = null;
|
|
4303
|
+
|
|
4304
|
+
/**
|
|
4305
|
+
* <p>Verification result of the document</p><ul><li>JSON format as follows: {"result_issuer":"issuer certificate legitimacy verification result","result_paper":"Document security object legitimacy verification result","result_data":"data tampering prevention verification result","result_chip":"chip replication prevention verification result"}. - Value ranges from 0 to 3: 0: verified, 1: verification failed, 2: unverified, 3: partially passed. When all four verification results are 0, it means the document is genuine.</li></ul>
|
|
4306
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4307
|
+
* @type {string || null}
|
|
4308
|
+
*/
|
|
4309
|
+
this.CheckMRTD = null;
|
|
4310
|
+
|
|
4311
|
+
/**
|
|
4312
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4313
|
+
* @type {string || null}
|
|
4314
|
+
*/
|
|
4315
|
+
this.RequestId = null;
|
|
4316
|
+
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
/**
|
|
4320
|
+
* @private
|
|
4321
|
+
*/
|
|
4322
|
+
deserialize(params) {
|
|
4323
|
+
if (!params) {
|
|
4324
|
+
return;
|
|
4325
|
+
}
|
|
4326
|
+
this.ResultCode = 'ResultCode' in params ? params.ResultCode : null;
|
|
4327
|
+
this.IdNum = 'IdNum' in params ? params.IdNum : null;
|
|
4328
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
4329
|
+
this.Picture = 'Picture' in params ? params.Picture : null;
|
|
4330
|
+
this.IdCardFrontImg = 'IdCardFrontImg' in params ? params.IdCardFrontImg : null;
|
|
4331
|
+
this.IdCardBackImg = 'IdCardBackImg' in params ? params.IdCardBackImg : null;
|
|
4332
|
+
this.BirthDate = 'BirthDate' in params ? params.BirthDate : null;
|
|
4333
|
+
this.BeginTime = 'BeginTime' in params ? params.BeginTime : null;
|
|
4334
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
4335
|
+
this.Address = 'Address' in params ? params.Address : null;
|
|
4336
|
+
this.Nation = 'Nation' in params ? params.Nation : null;
|
|
4337
|
+
this.Sex = 'Sex' in params ? params.Sex : null;
|
|
4338
|
+
this.IdType = 'IdType' in params ? params.IdType : null;
|
|
4339
|
+
this.EnName = 'EnName' in params ? params.EnName : null;
|
|
4340
|
+
this.SigningOrganization = 'SigningOrganization' in params ? params.SigningOrganization : null;
|
|
4341
|
+
this.OtherIdNum = 'OtherIdNum' in params ? params.OtherIdNum : null;
|
|
4342
|
+
this.Nationality = 'Nationality' in params ? params.Nationality : null;
|
|
4343
|
+
this.PersonalNumber = 'PersonalNumber' in params ? params.PersonalNumber : null;
|
|
4344
|
+
this.CheckMRTD = 'CheckMRTD' in params ? params.CheckMRTD : null;
|
|
4345
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4346
|
+
|
|
4347
|
+
}
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4168
4350
|
/**
|
|
4169
4351
|
* BankCardVerification request structure.
|
|
4170
4352
|
* @class
|
|
@@ -4230,6 +4412,34 @@ class BankCardVerificationRequest extends AbstractModel {
|
|
|
4230
4412
|
}
|
|
4231
4413
|
}
|
|
4232
4414
|
|
|
4415
|
+
/**
|
|
4416
|
+
* GetWxNFCResult request structure.
|
|
4417
|
+
* @class
|
|
4418
|
+
*/
|
|
4419
|
+
class GetWxNFCResultRequest extends AbstractModel {
|
|
4420
|
+
constructor(){
|
|
4421
|
+
super();
|
|
4422
|
+
|
|
4423
|
+
/**
|
|
4424
|
+
* <p>Unique identifier ID returned by the frontend NFC SDK</p>
|
|
4425
|
+
* @type {string || null}
|
|
4426
|
+
*/
|
|
4427
|
+
this.NFCToken = null;
|
|
4428
|
+
|
|
4429
|
+
}
|
|
4430
|
+
|
|
4431
|
+
/**
|
|
4432
|
+
* @private
|
|
4433
|
+
*/
|
|
4434
|
+
deserialize(params) {
|
|
4435
|
+
if (!params) {
|
|
4436
|
+
return;
|
|
4437
|
+
}
|
|
4438
|
+
this.NFCToken = 'NFCToken' in params ? params.NFCToken : null;
|
|
4439
|
+
|
|
4440
|
+
}
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4233
4443
|
/**
|
|
4234
4444
|
* Thailand ID Card
|
|
4235
4445
|
* @class
|
|
@@ -5515,33 +5725,30 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5515
5725
|
}
|
|
5516
5726
|
|
|
5517
5727
|
/**
|
|
5518
|
-
*
|
|
5728
|
+
* GenerateReflectSequence response structure.
|
|
5519
5729
|
* @class
|
|
5520
5730
|
*/
|
|
5521
|
-
class
|
|
5731
|
+
class GenerateReflectSequenceResponse extends AbstractModel {
|
|
5522
5732
|
constructor(){
|
|
5523
5733
|
super();
|
|
5524
5734
|
|
|
5525
5735
|
/**
|
|
5526
|
-
*
|
|
5527
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5736
|
+
* The resource URL of the light sequence, which needs to be downloaded and passed through to the SDK to start the eKYC process.
|
|
5528
5737
|
* @type {string || null}
|
|
5529
5738
|
*/
|
|
5530
|
-
this.
|
|
5739
|
+
this.ReflectSequenceUrl = null;
|
|
5531
5740
|
|
|
5532
5741
|
/**
|
|
5533
|
-
*
|
|
5534
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5742
|
+
* The MD5 hash value of the light sequence, which is used to check whether the light sequence is altered.
|
|
5535
5743
|
* @type {string || null}
|
|
5536
5744
|
*/
|
|
5537
|
-
this.
|
|
5745
|
+
this.ReflectSequenceMd5 = null;
|
|
5538
5746
|
|
|
5539
5747
|
/**
|
|
5540
|
-
*
|
|
5541
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5748
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5542
5749
|
* @type {string || null}
|
|
5543
5750
|
*/
|
|
5544
|
-
this.
|
|
5751
|
+
this.RequestId = null;
|
|
5545
5752
|
|
|
5546
5753
|
}
|
|
5547
5754
|
|
|
@@ -5552,9 +5759,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5552
5759
|
if (!params) {
|
|
5553
5760
|
return;
|
|
5554
5761
|
}
|
|
5555
|
-
this.
|
|
5556
|
-
this.
|
|
5557
|
-
this.
|
|
5762
|
+
this.ReflectSequenceUrl = 'ReflectSequenceUrl' in params ? params.ReflectSequenceUrl : null;
|
|
5763
|
+
this.ReflectSequenceMd5 = 'ReflectSequenceMd5' in params ? params.ReflectSequenceMd5 : null;
|
|
5764
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5558
5765
|
|
|
5559
5766
|
}
|
|
5560
5767
|
}
|
|
@@ -7491,6 +7698,41 @@ class CreateUploadUrlRequest extends AbstractModel {
|
|
|
7491
7698
|
}
|
|
7492
7699
|
}
|
|
7493
7700
|
|
|
7701
|
+
/**
|
|
7702
|
+
* GetNFCToken response structure.
|
|
7703
|
+
* @class
|
|
7704
|
+
*/
|
|
7705
|
+
class GetNFCTokenResponse extends AbstractModel {
|
|
7706
|
+
constructor(){
|
|
7707
|
+
super();
|
|
7708
|
+
|
|
7709
|
+
/**
|
|
7710
|
+
* NFCToken
|
|
7711
|
+
* @type {string || null}
|
|
7712
|
+
*/
|
|
7713
|
+
this.Token = null;
|
|
7714
|
+
|
|
7715
|
+
/**
|
|
7716
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
7717
|
+
* @type {string || null}
|
|
7718
|
+
*/
|
|
7719
|
+
this.RequestId = null;
|
|
7720
|
+
|
|
7721
|
+
}
|
|
7722
|
+
|
|
7723
|
+
/**
|
|
7724
|
+
* @private
|
|
7725
|
+
*/
|
|
7726
|
+
deserialize(params) {
|
|
7727
|
+
if (!params) {
|
|
7728
|
+
return;
|
|
7729
|
+
}
|
|
7730
|
+
this.Token = 'Token' in params ? params.Token : null;
|
|
7731
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7732
|
+
|
|
7733
|
+
}
|
|
7734
|
+
}
|
|
7735
|
+
|
|
7494
7736
|
/**
|
|
7495
7737
|
* Hong Kong (China) ID card.
|
|
7496
7738
|
* @class
|
|
@@ -7665,6 +7907,27 @@ Their meanings are as follows:
|
|
|
7665
7907
|
}
|
|
7666
7908
|
}
|
|
7667
7909
|
|
|
7910
|
+
/**
|
|
7911
|
+
* GetNFCToken request structure.
|
|
7912
|
+
* @class
|
|
7913
|
+
*/
|
|
7914
|
+
class GetNFCTokenRequest extends AbstractModel {
|
|
7915
|
+
constructor(){
|
|
7916
|
+
super();
|
|
7917
|
+
|
|
7918
|
+
}
|
|
7919
|
+
|
|
7920
|
+
/**
|
|
7921
|
+
* @private
|
|
7922
|
+
*/
|
|
7923
|
+
deserialize(params) {
|
|
7924
|
+
if (!params) {
|
|
7925
|
+
return;
|
|
7926
|
+
}
|
|
7927
|
+
|
|
7928
|
+
}
|
|
7929
|
+
}
|
|
7930
|
+
|
|
7668
7931
|
/**
|
|
7669
7932
|
* Taiwan (China) ID card.
|
|
7670
7933
|
* @class
|
|
@@ -7766,7 +8029,7 @@ module.exports = {
|
|
|
7766
8029
|
OCRResult: OCRResult,
|
|
7767
8030
|
BangladeshIDCard: BangladeshIDCard,
|
|
7768
8031
|
LivenessCompareResponse: LivenessCompareResponse,
|
|
7769
|
-
|
|
8032
|
+
PhilippinesSSSID: PhilippinesSSSID,
|
|
7770
8033
|
DetectAIFakeFacesRequest: DetectAIFakeFacesRequest,
|
|
7771
8034
|
IndonesiaIDCard: IndonesiaIDCard,
|
|
7772
8035
|
SingaporeIDCard: SingaporeIDCard,
|
|
@@ -7802,7 +8065,9 @@ module.exports = {
|
|
|
7802
8065
|
MLIDCard: MLIDCard,
|
|
7803
8066
|
GetFaceIdResultIntlResponse: GetFaceIdResultIntlResponse,
|
|
7804
8067
|
CheckBankCardInformationRequest: CheckBankCardInformationRequest,
|
|
8068
|
+
GetWxNFCResultResponse: GetWxNFCResultResponse,
|
|
7805
8069
|
BankCardVerificationRequest: BankCardVerificationRequest,
|
|
8070
|
+
GetWxNFCResultRequest: GetWxNFCResultRequest,
|
|
7806
8071
|
ThailandIDCard: ThailandIDCard,
|
|
7807
8072
|
CheckIdCardInformationResponse: CheckIdCardInformationResponse,
|
|
7808
8073
|
PhoneVerificationResponse: PhoneVerificationResponse,
|
|
@@ -7822,7 +8087,7 @@ module.exports = {
|
|
|
7822
8087
|
ApplyWebVerificationBizTokenIntlRequest: ApplyWebVerificationBizTokenIntlRequest,
|
|
7823
8088
|
FileInfo: FileInfo,
|
|
7824
8089
|
PhilippinesDrivingLicense: PhilippinesDrivingLicense,
|
|
7825
|
-
|
|
8090
|
+
GenerateReflectSequenceResponse: GenerateReflectSequenceResponse,
|
|
7826
8091
|
ImageRecognitionResponse: ImageRecognitionResponse,
|
|
7827
8092
|
IdCardVerificationResponse: IdCardVerificationResponse,
|
|
7828
8093
|
WebVerificationConfigIntl: WebVerificationConfigIntl,
|
|
@@ -7847,9 +8112,11 @@ module.exports = {
|
|
|
7847
8112
|
ImageRecognitionRequest: ImageRecognitionRequest,
|
|
7848
8113
|
BankCard4EVerificationRequest: BankCard4EVerificationRequest,
|
|
7849
8114
|
CreateUploadUrlRequest: CreateUploadUrlRequest,
|
|
8115
|
+
GetNFCTokenResponse: GetNFCTokenResponse,
|
|
7850
8116
|
NormalHKIDCard: NormalHKIDCard,
|
|
7851
8117
|
GetSdkVerificationResultRequest: GetSdkVerificationResultRequest,
|
|
7852
8118
|
ApplyLivenessTokenRequest: ApplyLivenessTokenRequest,
|
|
8119
|
+
GetNFCTokenRequest: GetNFCTokenRequest,
|
|
7853
8120
|
TaiWanIDCard: TaiWanIDCard,
|
|
7854
8121
|
GetWebVerificationResultIntlRequest: GetWebVerificationResultIntlRequest,
|
|
7855
8122
|
|
|
@@ -32,6 +32,7 @@ const DescribeCustomerBillDownloadUrlRequest = models.DescribeCustomerBillDownlo
|
|
|
32
32
|
const DescribeCustomerUinData = models.DescribeCustomerUinData;
|
|
33
33
|
const CountryCodeItem = models.CountryCodeItem;
|
|
34
34
|
const DescribeBillSummaryByRegionRequest = models.DescribeBillSummaryByRegionRequest;
|
|
35
|
+
const DescribeCustomerOwnCostExplorerFilterResponse = models.DescribeCustomerOwnCostExplorerFilterResponse;
|
|
35
36
|
const DescribeCustomerBillDetailRequest = models.DescribeCustomerBillDetailRequest;
|
|
36
37
|
const QueryPendingSubAgentsV2Request = models.QueryPendingSubAgentsV2Request;
|
|
37
38
|
const QueryCreditAllocationHistoryResponse = models.QueryCreditAllocationHistoryResponse;
|
|
@@ -42,7 +43,7 @@ const QueryCustomerBillingQuotaData = models.QueryCustomerBillingQuotaData;
|
|
|
42
43
|
const QueryPartnerCreditRequest = models.QueryPartnerCreditRequest;
|
|
43
44
|
const GetTradeConfigListRequest = models.GetTradeConfigListRequest;
|
|
44
45
|
const DescribeBillSummaryByProductRequest = models.DescribeBillSummaryByProductRequest;
|
|
45
|
-
const
|
|
46
|
+
const DescribeBillDownloadUrlRequest = models.DescribeBillDownloadUrlRequest;
|
|
46
47
|
const QueryPartnerCreditResponse = models.QueryPartnerCreditResponse;
|
|
47
48
|
const QueryVoucherListByUinResponse = models.QueryVoucherListByUinResponse;
|
|
48
49
|
const QueryVoucherPoolRequest = models.QueryVoucherPoolRequest;
|
|
@@ -57,14 +58,15 @@ const DescribeBillSummaryByPayModeResponse = models.DescribeBillSummaryByPayMode
|
|
|
57
58
|
const QueryAccountVerificationStatusResponse = models.QueryAccountVerificationStatusResponse;
|
|
58
59
|
const AllocateCustomerCreditRequest = models.AllocateCustomerCreditRequest;
|
|
59
60
|
const DescribeCustomerOwnVoucherListResponse = models.DescribeCustomerOwnVoucherListResponse;
|
|
60
|
-
const
|
|
61
|
-
const DescribeBillSummaryByPayModeRequest = models.DescribeBillSummaryByPayModeRequest;
|
|
62
|
-
const DescribeCustomerVoucherUsageDetailsResponse = models.DescribeCustomerVoucherUsageDetailsResponse;
|
|
61
|
+
const ModifyClientRemarkResponse = models.ModifyClientRemarkResponse;
|
|
63
62
|
const QueryInvitationInfoData = models.QueryInvitationInfoData;
|
|
63
|
+
const DescribeCustomerVoucherUsageDetailsResponse = models.DescribeCustomerVoucherUsageDetailsResponse;
|
|
64
|
+
const DescribeBillSummaryByPayModeRequest = models.DescribeBillSummaryByPayModeRequest;
|
|
64
65
|
const QuerySubAgentsDetailV2Request = models.QuerySubAgentsDetailV2Request;
|
|
65
66
|
const GetCountryCodesResponse = models.GetCountryCodesResponse;
|
|
66
67
|
const AllocateCreditPoolRequest = models.AllocateCreditPoolRequest;
|
|
67
68
|
const AllocateCustomerCreditResponse = models.AllocateCustomerCreditResponse;
|
|
69
|
+
const CostAnalyzeFilterDetail = models.CostAnalyzeFilterDetail;
|
|
68
70
|
const QueryT1IndirectCustomersDetailResponse = models.QueryT1IndirectCustomersDetailResponse;
|
|
69
71
|
const QueryVoucherAmountByUinRequest = models.QueryVoucherAmountByUinRequest;
|
|
70
72
|
const GetCountryCodesRequest = models.GetCountryCodesRequest;
|
|
@@ -78,16 +80,16 @@ const TradeOneNode = models.TradeOneNode;
|
|
|
78
80
|
const DescribeRebateDownloadUrlResponse = models.DescribeRebateDownloadUrlResponse;
|
|
79
81
|
const QuerySubAgentsDetailV2ResponseData = models.QuerySubAgentsDetailV2ResponseData;
|
|
80
82
|
const DescribeBillSummaryResponse = models.DescribeBillSummaryResponse;
|
|
81
|
-
const
|
|
83
|
+
const DescribeCustomerOwnVoucherUsageDetailsRequest = models.DescribeCustomerOwnVoucherUsageDetailsRequest;
|
|
82
84
|
const DescribeCustomerVoucherItem = models.DescribeCustomerVoucherItem;
|
|
83
85
|
const QueryCustomersCreditRequest = models.QueryCustomersCreditRequest;
|
|
84
86
|
const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeRequest;
|
|
85
87
|
const QueryT1IndirectCustomersDetailResponseData = models.QueryT1IndirectCustomersDetailResponseData;
|
|
86
88
|
const DescribeCustomerOwnVoucherItem = models.DescribeCustomerOwnVoucherItem;
|
|
87
89
|
const DescribeCustomerInfoResponse = models.DescribeCustomerInfoResponse;
|
|
88
|
-
const DescribeCustomerOwnVoucherUsageDetailsRequest = models.DescribeCustomerOwnVoucherUsageDetailsRequest;
|
|
89
90
|
const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
|
|
90
91
|
const QueryAccountVerificationStatusRequest = models.QueryAccountVerificationStatusRequest;
|
|
92
|
+
const DescribeCustomerOwnCostExplorerFilterRequest = models.DescribeCustomerOwnCostExplorerFilterRequest;
|
|
91
93
|
const ActionSummaryOverviewItem = models.ActionSummaryOverviewItem;
|
|
92
94
|
const QueryPendingClientsV2Response = models.QueryPendingClientsV2Response;
|
|
93
95
|
const AllocateCreditPoolResponse = models.AllocateCreditPoolResponse;
|
|
@@ -102,6 +104,7 @@ const PayModeSummaryOverviewItem = models.PayModeSummaryOverviewItem;
|
|
|
102
104
|
const QueryCustomersCreditData = models.QueryCustomersCreditData;
|
|
103
105
|
const QueryCustomersCreditResponse = models.QueryCustomersCreditResponse;
|
|
104
106
|
const SendVerifyCodeRequest = models.SendVerifyCodeRequest;
|
|
107
|
+
const BillQueryFilterMsg = models.BillQueryFilterMsg;
|
|
105
108
|
const QueryVoucherListByUinRequest = models.QueryVoucherListByUinRequest;
|
|
106
109
|
const QueryVoucherAmountByUinResponse = models.QueryVoucherAmountByUinResponse;
|
|
107
110
|
const QueryVoucherAmountByUinItem = models.QueryVoucherAmountByUinItem;
|
|
@@ -118,6 +121,7 @@ const CreateAccountResponse = models.CreateAccountResponse;
|
|
|
118
121
|
const ApproveClientApplyResponse = models.ApproveClientApplyResponse;
|
|
119
122
|
const CustomerBillDetailData = models.CustomerBillDetailData;
|
|
120
123
|
const TagInfo = models.TagInfo;
|
|
124
|
+
const QueryInvitationInfoRequest = models.QueryInvitationInfoRequest;
|
|
121
125
|
const QueryCreditByUinListResponse = models.QueryCreditByUinListResponse;
|
|
122
126
|
const BusinessSummaryOverviewItem = models.BusinessSummaryOverviewItem;
|
|
123
127
|
const ForceQNRequest = models.ForceQNRequest;
|
|
@@ -249,16 +253,14 @@ Invocation Role: Distributor.
|
|
|
249
253
|
}
|
|
250
254
|
|
|
251
255
|
/**
|
|
252
|
-
*
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
* @param {ApproveClientApplyRequest} req
|
|
256
|
-
* @param {function(string, ApproveClientApplyResponse):void} cb
|
|
256
|
+
* Cost analysis API advanced filtering
|
|
257
|
+
* @param {DescribeCustomerOwnCostExplorerFilterRequest} req
|
|
258
|
+
* @param {function(string, DescribeCustomerOwnCostExplorerFilterResponse):void} cb
|
|
257
259
|
* @public
|
|
258
260
|
*/
|
|
259
|
-
|
|
260
|
-
let resp = new
|
|
261
|
-
this.request("
|
|
261
|
+
DescribeCustomerOwnCostExplorerFilter(req, cb) {
|
|
262
|
+
let resp = new DescribeCustomerOwnCostExplorerFilterResponse();
|
|
263
|
+
this.request("DescribeCustomerOwnCostExplorerFilter", req, resp, cb);
|
|
262
264
|
}
|
|
263
265
|
|
|
264
266
|
/**
|
|
@@ -395,15 +397,15 @@ Callable roles: Distributor, Second-level reseller, Reseller
|
|
|
395
397
|
}
|
|
396
398
|
|
|
397
399
|
/**
|
|
398
|
-
*
|
|
399
|
-
|
|
400
|
-
* @param {
|
|
401
|
-
* @param {function(string,
|
|
400
|
+
* Description: The current API is used to query the usage details of reseller's customer vouchers by Reseller, Second-level Reseller or Distributor.
|
|
401
|
+
Reseller, Second-level Reseller or Distributor can call this API.
|
|
402
|
+
* @param {DescribeCustomerVoucherUsageDetailsRequest} req
|
|
403
|
+
* @param {function(string, DescribeCustomerVoucherUsageDetailsResponse):void} cb
|
|
402
404
|
* @public
|
|
403
405
|
*/
|
|
404
|
-
|
|
405
|
-
let resp = new
|
|
406
|
-
this.request("
|
|
406
|
+
DescribeCustomerVoucherUsageDetails(req, cb) {
|
|
407
|
+
let resp = new DescribeCustomerVoucherUsageDetailsResponse();
|
|
408
|
+
this.request("DescribeCustomerVoucherUsageDetails", req, resp, cb);
|
|
407
409
|
}
|
|
408
410
|
|
|
409
411
|
/**
|
|
@@ -574,15 +576,15 @@ Callable roles: Reseller, Distributor, Second-level reseller
|
|
|
574
576
|
}
|
|
575
577
|
|
|
576
578
|
/**
|
|
577
|
-
*
|
|
578
|
-
|
|
579
|
-
* @param {
|
|
580
|
-
* @param {function(string,
|
|
579
|
+
* This API is used to query the daily bill expenditure of customer by resellers.
|
|
580
|
+
Invocation Role: first-level reseller, second-level reseller, reseller.
|
|
581
|
+
* @param {DescribeCustomerBillDetailByDayRequest} req
|
|
582
|
+
* @param {function(string, DescribeCustomerBillDetailByDayResponse):void} cb
|
|
581
583
|
* @public
|
|
582
584
|
*/
|
|
583
|
-
|
|
584
|
-
let resp = new
|
|
585
|
-
this.request("
|
|
585
|
+
DescribeCustomerBillDetailByDay(req, cb) {
|
|
586
|
+
let resp = new DescribeCustomerBillDetailByDayResponse();
|
|
587
|
+
this.request("DescribeCustomerBillDetailByDay", req, resp, cb);
|
|
586
588
|
}
|
|
587
589
|
|
|
588
590
|
/**
|
|
@@ -622,6 +624,19 @@ Callable roles: Distributor, Reseller
|
|
|
622
624
|
this.request("QueryAccountVerificationStatus", req, resp, cb);
|
|
623
625
|
}
|
|
624
626
|
|
|
627
|
+
/**
|
|
628
|
+
* Description: This API is used by resellers to review applications to become sub-customers. Note: This API is used to apply for the allowlist. If needed, please contact your business representative.
|
|
629
|
+
|
|
630
|
+
Callable roles: Reseller, Distributer, Second-level reseller
|
|
631
|
+
* @param {ApproveClientApplyRequest} req
|
|
632
|
+
* @param {function(string, ApproveClientApplyResponse):void} cb
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
ApproveClientApply(req, cb) {
|
|
636
|
+
let resp = new ApproveClientApplyResponse();
|
|
637
|
+
this.request("ApproveClientApply", req, resp, cb);
|
|
638
|
+
}
|
|
639
|
+
|
|
625
640
|
/**
|
|
626
641
|
* This API is used to query the product list information within the specified policy range. To call this API, contact your business manager to apply for adding it to the allowlist.
|
|
627
642
|
Callable roles: Distributor, Second-level reseller, Reseller
|