tencentcloud-sdk-nodejs-faceid 4.0.665 → 4.0.667

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.
@@ -136,13 +136,13 @@ LIP为数字模式,ACTION为动作模式,SILENT为静默模式,三种模
136
136
  }
137
137
 
138
138
  /**
139
- * RuleId相关配置
139
+ * 意愿核身(点头确认模式)配置
140
140
  */
141
- export interface RuleIdConfig {
141
+ export interface IntentionActionConfig {
142
142
  /**
143
- * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
143
+ * 点头确认模式下,系统语音播报使用的问题文本,问题最大长度为150个字符。
144
144
  */
145
- IntentionRecognition?: boolean
145
+ Text: string
146
146
  }
147
147
 
148
148
  /**
@@ -408,6 +408,34 @@ export interface GetEidTokenConfig {
408
408
  IsSupportHMTResidentPermitOCR?: boolean
409
409
  }
410
410
 
411
+ /**
412
+ * Liveness返回参数结构体
413
+ */
414
+ export interface LivenessResponse {
415
+ /**
416
+ * 验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
417
+ 注意:此字段可能返回 null,表示取不到有效值。
418
+ */
419
+ BestFrameBase64?: string
420
+ /**
421
+ * 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
422
+ */
423
+ Result?: string
424
+ /**
425
+ * 业务结果描述。
426
+ */
427
+ Description?: string
428
+ /**
429
+ * 最佳最佳截图列表,仅在配置了返回多张最佳截图时有效。
430
+ 注意:此字段可能返回 null,表示取不到有效值。
431
+ */
432
+ BestFrameList?: Array<string>
433
+ /**
434
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
435
+ */
436
+ RequestId?: string
437
+ }
438
+
411
439
  /**
412
440
  * CheckIdCardInformation返回参数结构体
413
441
  */
@@ -519,6 +547,11 @@ export interface GetDetectInfoEnhancedResponse {
519
547
  注意:此字段可能返回 null,表示取不到有效值。
520
548
  */
521
549
  IntentionQuestionResult?: IntentionQuestionResult
550
+ /**
551
+ * 意愿核身点头确认模式的结果信息,若未使用该意愿核身功能,该字段返回值可以不处理。
552
+ 注意:此字段可能返回 null,表示取不到有效值。
553
+ */
554
+ IntentionActionResult?: IntentionActionResult
522
555
  /**
523
556
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
524
557
  */
@@ -604,12 +637,12 @@ export interface DetectAuthResponse {
604
637
  /**
605
638
  * 用于发起核身流程的URL,仅微信H5场景使用。
606
639
  */
607
- Url: string
640
+ Url?: string
608
641
  /**
609
642
  * 一次核身流程的标识,有效时间为7,200秒;
610
643
  完成核身后,可用该标识获取验证结果信息。
611
644
  */
612
- BizToken: string
645
+ BizToken?: string
613
646
  /**
614
647
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
615
648
  */
@@ -838,17 +871,43 @@ export interface BankCard4EVerificationResponse {
838
871
  }
839
872
 
840
873
  /**
841
- * MobileStatus请求参数结构体
874
+ * 意愿核身点头确认模式结果
842
875
  */
843
- export interface MobileStatusRequest {
876
+ export interface IntentionActionResult {
844
877
  /**
845
- * 手机号码
878
+ * 意愿核身错误码:
879
+ 0: "成功"
880
+ -1: "参数错误"
881
+ -2: "系统异常"
882
+ -101: "请保持人脸在框内"
883
+ -102: "检测到多张人脸"
884
+ -103: "人脸检测失败"
885
+ -104: "人脸检测不完整"
886
+ -105: "请勿遮挡眼睛"
887
+ -106: "请勿遮挡嘴巴"
888
+ -107: "请勿遮挡鼻子"
889
+ -201: "人脸比对相似度低"
890
+ -202: "人脸比对失败"
891
+ -301: "意愿核验不通过"
892
+ -800: "前端不兼容错误"
893
+ -801: "用户未授权摄像头和麦克风权限"
894
+ -802: "获取视频流失败"
895
+ -803: "用户主动关闭链接/异常断开链接"
896
+ -998: "系统数据异常"
897
+ -999: "系统未知错误,请联系人工核实"
898
+ 注意:此字段可能返回 null,表示取不到有效值。
846
899
  */
847
- Mobile: string
900
+ FinalResultDetailCode?: number
848
901
  /**
849
- * 敏感数据加密信息。对传入信息(手机号)有加密需求的用户可使用此参数,详情请点击左侧链接。
902
+ * 意愿核身错误信息
903
+ 注意:此字段可能返回 null,表示取不到有效值。
850
904
  */
851
- Encryption?: Encryption
905
+ FinalResultMessage?: string
906
+ /**
907
+ * 意愿核身结果详细数据,与每段点头确认过程一一对应
908
+ 注意:此字段可能返回 null,表示取不到有效值。
909
+ */
910
+ Details?: Array<IntentionActionResultDetail>
852
911
  }
853
912
 
854
913
  /**
@@ -1275,6 +1334,22 @@ export interface MobileStatusResponse {
1275
1334
  RequestId?: string
1276
1335
  }
1277
1336
 
1337
+ /**
1338
+ * RuleId相关配置
1339
+ */
1340
+ export interface RuleIdConfig {
1341
+ /**
1342
+ * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
1343
+ */
1344
+ IntentionRecognition?: boolean
1345
+ /**
1346
+ * 意愿核身类型,默认为0:
1347
+ 0:问答模式,DetectAuth接口需要传入IntentionQuestions字段;
1348
+ 1:点头模式,DetectAuth接口需要传入IntentionActions字段;
1349
+ */
1350
+ IntentionType?: number
1351
+ }
1352
+
1278
1353
  /**
1279
1354
  * PhoneVerificationCTCC请求参数结构体
1280
1355
  */
@@ -1406,31 +1481,19 @@ export interface ParseNfcDataRequest {
1406
1481
  }
1407
1482
 
1408
1483
  /**
1409
- * Liveness返回参数结构体
1484
+ * 意愿核身点头确认模式结果详细数据
1410
1485
  */
1411
- export interface LivenessResponse {
1486
+ export interface IntentionActionResultDetail {
1412
1487
  /**
1413
- * 验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
1488
+ * 视频base64编码(其中包含全程提示文本和点头音频,mp4格式)
1414
1489
  注意:此字段可能返回 null,表示取不到有效值。
1415
1490
  */
1416
- BestFrameBase64?: string
1417
- /**
1418
- * 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
1419
- */
1420
- Result?: string
1421
- /**
1422
- * 业务结果描述。
1423
- */
1424
- Description?: string
1491
+ Video?: string
1425
1492
  /**
1426
- * 最佳最佳截图列表,仅在配置了返回多张最佳截图时有效。
1493
+ * 屏幕截图base64编码列表
1427
1494
  注意:此字段可能返回 null,表示取不到有效值。
1428
1495
  */
1429
- BestFrameList?: Array<string>
1430
- /**
1431
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1432
- */
1433
- RequestId?: string
1496
+ ScreenShot?: Array<string>
1434
1497
  }
1435
1498
 
1436
1499
  /**
@@ -1682,13 +1745,17 @@ Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。请
1682
1745
  */
1683
1746
  IntentionVerifyText?: string
1684
1747
  /**
1685
- * 意愿核身(问答模式)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持一个播报文本+回答文本。
1748
+ * 意愿核身语音问答模式(即语音播报+语音回答)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持1轮问答。
1686
1749
  */
1687
1750
  IntentionQuestions?: Array<IntentionQuestion>
1688
1751
  /**
1689
1752
  * RuleId相关配置
1690
1753
  */
1691
1754
  Config?: RuleIdConfig
1755
+ /**
1756
+ * 意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。
1757
+ */
1758
+ IntentionActions?: Array<IntentionActionConfig>
1692
1759
  }
1693
1760
 
1694
1761
  /**
@@ -1957,6 +2024,20 @@ export interface GetActionSequenceResponse {
1957
2024
  RequestId?: string
1958
2025
  }
1959
2026
 
2027
+ /**
2028
+ * MobileStatus请求参数结构体
2029
+ */
2030
+ export interface MobileStatusRequest {
2031
+ /**
2032
+ * 手机号码
2033
+ */
2034
+ Mobile: string
2035
+ /**
2036
+ * 敏感数据加密信息。对传入信息(手机号)有加密需求的用户可使用此参数,详情请点击左侧链接。
2037
+ */
2038
+ Encryption?: Encryption
2039
+ }
2040
+
1960
2041
  /**
1961
2042
  * BankCardVerification返回参数结构体
1962
2043
  */
@@ -2617,11 +2698,11 @@ export interface EncryptedPhoneVerificationRequest {
2617
2698
  */
2618
2699
  export interface IntentionQuestion {
2619
2700
  /**
2620
- * 系统播报的问题文本,问题最大长度为150个字符。
2701
+ * 当选择语音问答模式时,系统自动播报的问题文本,最大长度为150个字符。
2621
2702
  */
2622
2703
  Question: string
2623
2704
  /**
2624
- * 用户答案的标准文本列表,用于识别用户回答的语音与标准文本是否一致。列表长度最大为50,单个答案长度限制10个字符。
2705
+ * 当选择语音问答模式时,用于判断用户回答是否通过的标准答案列表,传入后可自动判断用户回答文本是否在标准文本列表中。列表长度最大为50,单个答案长度限制10个字符。
2625
2706
  */
2626
2707
  Answers: Array<string>
2627
2708
  }
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { GetDetectInfoEnhancedRequest, GetFaceIdTokenRequest, LivenessRequest, CheckBankCardInformationRequest, MobileNetworkTimeVerificationResponse, GetLiveCodeRequest, CheckIdNameDateResponse, IdCardVerificationRequest, BankCardVerificationRequest, CheckBankCardInformationResponse, CheckIdCardInformationResponse, GetDetectInfoEnhancedResponse, PhoneVerificationRequest, PhoneVerificationCMCCRequest, GetEidResultRequest, DetectAuthResponse, PhoneVerificationResponse, GetEidTokenRequest, GetWeChatBillDetailsResponse, CheckPhoneAndNameResponse, BankCard4EVerificationResponse, MobileStatusRequest, IdCardOCRVerificationRequest, LivenessRecognitionResponse, ParseNfcDataResponse, CheckIdNameDateRequest, BankCard2EVerificationRequest, LivenessRecognitionRequest, GetFaceIdTokenResponse, PhoneVerificationCMCCResponse, CheckEidTokenStatusResponse, PhoneVerificationCTCCResponse, MobileStatusResponse, PhoneVerificationCTCCRequest, IdCardOCRVerificationResponse, ParseNfcDataRequest, LivenessResponse, CheckIdCardInformationRequest, DetectAuthRequest, MinorsVerificationResponse, GetWeChatBillDetailsRequest, CheckEidTokenStatusRequest, GetEidResultResponse, ImageRecognitionRequest, PhoneVerificationCUCCRequest, BankCard4EVerificationRequest, MobileNetworkTimeVerificationRequest, GetFaceIdResultRequest, PhoneVerificationCUCCResponse, GetActionSequenceResponse, BankCardVerificationResponse, MinorsVerificationRequest, ImageRecognitionResponse, GetActionSequenceRequest, GetDetectInfoResponse, LivenessCompareResponse, GetLiveCodeResponse, GetDetectInfoRequest, BankCard2EVerificationResponse, IdCardVerificationResponse, CheckPhoneAndNameRequest, GetEidTokenResponse, LivenessCompareRequest, GetFaceIdResultResponse, EncryptedPhoneVerificationRequest, EncryptedPhoneVerificationResponse } from "./faceid_models";
2
+ import { GetDetectInfoEnhancedRequest, GetFaceIdTokenRequest, LivenessRequest, CheckBankCardInformationRequest, MobileNetworkTimeVerificationResponse, GetLiveCodeRequest, CheckIdNameDateResponse, IdCardVerificationRequest, BankCardVerificationRequest, CheckBankCardInformationResponse, LivenessResponse, CheckIdCardInformationResponse, GetDetectInfoEnhancedResponse, PhoneVerificationRequest, PhoneVerificationCMCCRequest, GetEidResultRequest, DetectAuthResponse, PhoneVerificationResponse, GetEidTokenRequest, GetWeChatBillDetailsResponse, CheckPhoneAndNameResponse, BankCard4EVerificationResponse, IdCardOCRVerificationRequest, LivenessRecognitionResponse, ParseNfcDataResponse, CheckIdNameDateRequest, BankCard2EVerificationRequest, LivenessRecognitionRequest, GetFaceIdTokenResponse, PhoneVerificationCMCCResponse, CheckEidTokenStatusResponse, PhoneVerificationCTCCResponse, MobileStatusResponse, PhoneVerificationCTCCRequest, IdCardOCRVerificationResponse, ParseNfcDataRequest, CheckIdCardInformationRequest, DetectAuthRequest, MinorsVerificationResponse, GetWeChatBillDetailsRequest, CheckEidTokenStatusRequest, GetEidResultResponse, ImageRecognitionRequest, PhoneVerificationCUCCRequest, BankCard4EVerificationRequest, MobileNetworkTimeVerificationRequest, GetFaceIdResultRequest, PhoneVerificationCUCCResponse, GetActionSequenceResponse, MobileStatusRequest, BankCardVerificationResponse, MinorsVerificationRequest, ImageRecognitionResponse, GetActionSequenceRequest, GetDetectInfoResponse, LivenessCompareResponse, GetLiveCodeResponse, GetDetectInfoRequest, BankCard2EVerificationResponse, IdCardVerificationResponse, CheckPhoneAndNameRequest, GetEidTokenResponse, LivenessCompareRequest, GetFaceIdResultResponse, EncryptedPhoneVerificationRequest, EncryptedPhoneVerificationResponse } from "./faceid_models";
3
3
  /**
4
4
  * faceid client
5
5
  * @class
@@ -115,13 +115,13 @@ export interface LivenessRequest {
115
115
  Optional?: string;
116
116
  }
117
117
  /**
118
- * RuleId相关配置
118
+ * 意愿核身(点头确认模式)配置
119
119
  */
120
- export interface RuleIdConfig {
120
+ export interface IntentionActionConfig {
121
121
  /**
122
- * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
122
+ * 点头确认模式下,系统语音播报使用的问题文本,问题最大长度为150个字符。
123
123
  */
124
- IntentionRecognition?: boolean;
124
+ Text: string;
125
125
  }
126
126
  /**
127
127
  * 敏感数据加密
@@ -375,6 +375,33 @@ export interface GetEidTokenConfig {
375
375
  */
376
376
  IsSupportHMTResidentPermitOCR?: boolean;
377
377
  }
378
+ /**
379
+ * Liveness返回参数结构体
380
+ */
381
+ export interface LivenessResponse {
382
+ /**
383
+ * 验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
384
+ 注意:此字段可能返回 null,表示取不到有效值。
385
+ */
386
+ BestFrameBase64?: string;
387
+ /**
388
+ * 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
389
+ */
390
+ Result?: string;
391
+ /**
392
+ * 业务结果描述。
393
+ */
394
+ Description?: string;
395
+ /**
396
+ * 最佳最佳截图列表,仅在配置了返回多张最佳截图时有效。
397
+ 注意:此字段可能返回 null,表示取不到有效值。
398
+ */
399
+ BestFrameList?: Array<string>;
400
+ /**
401
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
402
+ */
403
+ RequestId?: string;
404
+ }
378
405
  /**
379
406
  * CheckIdCardInformation返回参数结构体
380
407
  */
@@ -485,6 +512,11 @@ export interface GetDetectInfoEnhancedResponse {
485
512
  注意:此字段可能返回 null,表示取不到有效值。
486
513
  */
487
514
  IntentionQuestionResult?: IntentionQuestionResult;
515
+ /**
516
+ * 意愿核身点头确认模式的结果信息,若未使用该意愿核身功能,该字段返回值可以不处理。
517
+ 注意:此字段可能返回 null,表示取不到有效值。
518
+ */
519
+ IntentionActionResult?: IntentionActionResult;
488
520
  /**
489
521
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
490
522
  */
@@ -566,12 +598,12 @@ export interface DetectAuthResponse {
566
598
  /**
567
599
  * 用于发起核身流程的URL,仅微信H5场景使用。
568
600
  */
569
- Url: string;
601
+ Url?: string;
570
602
  /**
571
603
  * 一次核身流程的标识,有效时间为7,200秒;
572
604
  完成核身后,可用该标识获取验证结果信息。
573
605
  */
574
- BizToken: string;
606
+ BizToken?: string;
575
607
  /**
576
608
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
577
609
  */
@@ -793,17 +825,43 @@ export interface BankCard4EVerificationResponse {
793
825
  RequestId?: string;
794
826
  }
795
827
  /**
796
- * MobileStatus请求参数结构体
828
+ * 意愿核身点头确认模式结果
797
829
  */
798
- export interface MobileStatusRequest {
830
+ export interface IntentionActionResult {
799
831
  /**
800
- * 手机号码
832
+ * 意愿核身错误码:
833
+ 0: "成功"
834
+ -1: "参数错误"
835
+ -2: "系统异常"
836
+ -101: "请保持人脸在框内"
837
+ -102: "检测到多张人脸"
838
+ -103: "人脸检测失败"
839
+ -104: "人脸检测不完整"
840
+ -105: "请勿遮挡眼睛"
841
+ -106: "请勿遮挡嘴巴"
842
+ -107: "请勿遮挡鼻子"
843
+ -201: "人脸比对相似度低"
844
+ -202: "人脸比对失败"
845
+ -301: "意愿核验不通过"
846
+ -800: "前端不兼容错误"
847
+ -801: "用户未授权摄像头和麦克风权限"
848
+ -802: "获取视频流失败"
849
+ -803: "用户主动关闭链接/异常断开链接"
850
+ -998: "系统数据异常"
851
+ -999: "系统未知错误,请联系人工核实"
852
+ 注意:此字段可能返回 null,表示取不到有效值。
801
853
  */
802
- Mobile: string;
854
+ FinalResultDetailCode?: number;
803
855
  /**
804
- * 敏感数据加密信息。对传入信息(手机号)有加密需求的用户可使用此参数,详情请点击左侧链接。
856
+ * 意愿核身错误信息
857
+ 注意:此字段可能返回 null,表示取不到有效值。
805
858
  */
806
- Encryption?: Encryption;
859
+ FinalResultMessage?: string;
860
+ /**
861
+ * 意愿核身结果详细数据,与每段点头确认过程一一对应
862
+ 注意:此字段可能返回 null,表示取不到有效值。
863
+ */
864
+ Details?: Array<IntentionActionResultDetail>;
807
865
  }
808
866
  /**
809
867
  * IdCardOCRVerification请求参数结构体
@@ -1217,6 +1275,21 @@ export interface MobileStatusResponse {
1217
1275
  */
1218
1276
  RequestId?: string;
1219
1277
  }
1278
+ /**
1279
+ * RuleId相关配置
1280
+ */
1281
+ export interface RuleIdConfig {
1282
+ /**
1283
+ * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
1284
+ */
1285
+ IntentionRecognition?: boolean;
1286
+ /**
1287
+ * 意愿核身类型,默认为0:
1288
+ 0:问答模式,DetectAuth接口需要传入IntentionQuestions字段;
1289
+ 1:点头模式,DetectAuth接口需要传入IntentionActions字段;
1290
+ */
1291
+ IntentionType?: number;
1292
+ }
1220
1293
  /**
1221
1294
  * PhoneVerificationCTCC请求参数结构体
1222
1295
  */
@@ -1344,31 +1417,19 @@ export interface ParseNfcDataRequest {
1344
1417
  ReqId: string;
1345
1418
  }
1346
1419
  /**
1347
- * Liveness返回参数结构体
1420
+ * 意愿核身点头确认模式结果详细数据
1348
1421
  */
1349
- export interface LivenessResponse {
1422
+ export interface IntentionActionResultDetail {
1350
1423
  /**
1351
- * 验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
1424
+ * 视频base64编码(其中包含全程提示文本和点头音频,mp4格式)
1352
1425
  注意:此字段可能返回 null,表示取不到有效值。
1353
1426
  */
1354
- BestFrameBase64?: string;
1427
+ Video?: string;
1355
1428
  /**
1356
- * 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
1357
- */
1358
- Result?: string;
1359
- /**
1360
- * 业务结果描述。
1361
- */
1362
- Description?: string;
1363
- /**
1364
- * 最佳最佳截图列表,仅在配置了返回多张最佳截图时有效。
1429
+ * 屏幕截图base64编码列表
1365
1430
  注意:此字段可能返回 null,表示取不到有效值。
1366
1431
  */
1367
- BestFrameList?: Array<string>;
1368
- /**
1369
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1370
- */
1371
- RequestId?: string;
1432
+ ScreenShot?: Array<string>;
1372
1433
  }
1373
1434
  /**
1374
1435
  * CheckIdCardInformation请求参数结构体
@@ -1617,13 +1678,17 @@ export interface DetectAuthRequest {
1617
1678
  */
1618
1679
  IntentionVerifyText?: string;
1619
1680
  /**
1620
- * 意愿核身(问答模式)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持一个播报文本+回答文本。
1681
+ * 意愿核身语音问答模式(即语音播报+语音回答)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持1轮问答。
1621
1682
  */
1622
1683
  IntentionQuestions?: Array<IntentionQuestion>;
1623
1684
  /**
1624
1685
  * RuleId相关配置
1625
1686
  */
1626
1687
  Config?: RuleIdConfig;
1688
+ /**
1689
+ * 意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。
1690
+ */
1691
+ IntentionActions?: Array<IntentionActionConfig>;
1627
1692
  }
1628
1693
  /**
1629
1694
  * MinorsVerification返回参数结构体
@@ -1880,6 +1945,19 @@ export interface GetActionSequenceResponse {
1880
1945
  */
1881
1946
  RequestId?: string;
1882
1947
  }
1948
+ /**
1949
+ * MobileStatus请求参数结构体
1950
+ */
1951
+ export interface MobileStatusRequest {
1952
+ /**
1953
+ * 手机号码
1954
+ */
1955
+ Mobile: string;
1956
+ /**
1957
+ * 敏感数据加密信息。对传入信息(手机号)有加密需求的用户可使用此参数,详情请点击左侧链接。
1958
+ */
1959
+ Encryption?: Encryption;
1960
+ }
1883
1961
  /**
1884
1962
  * BankCardVerification返回参数结构体
1885
1963
  */
@@ -2522,11 +2600,11 @@ export interface EncryptedPhoneVerificationRequest {
2522
2600
  */
2523
2601
  export interface IntentionQuestion {
2524
2602
  /**
2525
- * 系统播报的问题文本,问题最大长度为150个字符。
2603
+ * 当选择语音问答模式时,系统自动播报的问题文本,最大长度为150个字符。
2526
2604
  */
2527
2605
  Question: string;
2528
2606
  /**
2529
- * 用户答案的标准文本列表,用于识别用户回答的语音与标准文本是否一致。列表长度最大为50,单个答案长度限制10个字符。
2607
+ * 当选择语音问答模式时,用于判断用户回答是否通过的标准答案列表,传入后可自动判断用户回答文本是否在标准文本列表中。列表长度最大为50,单个答案长度限制10个字符。
2530
2608
  */
2531
2609
  Answers: Array<string>;
2532
2610
  }