tencentcloud-sdk-faceid 3.0.697 → 3.0.699

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180301/models.rb +13 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bab07362afe2d6cd7b66de4b6f772f2128294e35
4
- data.tar.gz: 9c3c12cf46e88557fcaffc6a1794a786efe5a765
3
+ metadata.gz: c591189c0b5c431ab266a36c247ce6cc35910ce5
4
+ data.tar.gz: b63eac4417118b52c3919988c45b3c2e55cd197f
5
5
  SHA512:
6
- metadata.gz: bfc43f8d46346b0da29ead8d91c76ebab50f811fd4d3ee5d80cd3aa2b44d34dd35d56b42b4ab166c06ce04846ff912d4c226aeaaa501979496c8dcedc3d493e8
7
- data.tar.gz: b72072a77698b79447af739a4ceec35b48bbf63a6e87b6214bdd0984be7b9f49c94dd3e735691e74e178954366964ce1aa02dda99dd52fde3fce43d2a8a946a2
6
+ metadata.gz: cf988904c5073fa76550598f96465509a87d5d5bf38c3d0796ed1fb7be403421f52aebb6380afe8d5e1885599049f68f866c62d149ddfedd1ccf69838a14f183
7
+ data.tar.gz: cbb5fa3e5bdd905a1304b5dbecc0f6622684977dd7ffbca35681b162f5320809f9e414c548a8e13abe21c822b07f41c13af08bb52f8ceaa17139a38252e31d5c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.697
1
+ 3.0.699
@@ -1335,10 +1335,12 @@ module TencentCloud
1335
1335
  # @type IsEncrypt: Boolean
1336
1336
  # @param Encryption: 是否需要对返回中的敏感信息进行加密。仅指定加密算法Algorithm即可,其余字段传入默认值。其中敏感信息包括:Response.Text.IdCard、Response.Text.Name、Response.Text.OcrIdCard、Response.Text.OcrName
1337
1337
  # @type Encryption: :class:`Tencentcloud::Faceid.v20180301.models.Encryption`
1338
+ # @param IsEncryptResponse: 是否对回包整体进行加密
1339
+ # @type IsEncryptResponse: Boolean
1338
1340
 
1339
- attr_accessor :BizToken, :RuleId, :InfoType, :BestFramesCount, :IsCutIdCardImage, :IsNeedIdCardAvatar, :IsEncrypt, :Encryption
1341
+ attr_accessor :BizToken, :RuleId, :InfoType, :BestFramesCount, :IsCutIdCardImage, :IsNeedIdCardAvatar, :IsEncrypt, :Encryption, :IsEncryptResponse
1340
1342
 
1341
- def initialize(biztoken=nil, ruleid=nil, infotype=nil, bestframescount=nil, iscutidcardimage=nil, isneedidcardavatar=nil, isencrypt=nil, encryption=nil)
1343
+ def initialize(biztoken=nil, ruleid=nil, infotype=nil, bestframescount=nil, iscutidcardimage=nil, isneedidcardavatar=nil, isencrypt=nil, encryption=nil, isencryptresponse=nil)
1342
1344
  @BizToken = biztoken
1343
1345
  @RuleId = ruleid
1344
1346
  @InfoType = infotype
@@ -1347,6 +1349,7 @@ module TencentCloud
1347
1349
  @IsNeedIdCardAvatar = isneedidcardavatar
1348
1350
  @IsEncrypt = isencrypt
1349
1351
  @Encryption = encryption
1352
+ @IsEncryptResponse = isencryptresponse
1350
1353
  end
1351
1354
 
1352
1355
  def deserialize(params)
@@ -1361,6 +1364,7 @@ module TencentCloud
1361
1364
  @Encryption = Encryption.new
1362
1365
  @Encryption.deserialize(params['Encryption'])
1363
1366
  end
1367
+ @IsEncryptResponse = params['IsEncryptResponse']
1364
1368
  end
1365
1369
  end
1366
1370
 
@@ -1390,12 +1394,15 @@ module TencentCloud
1390
1394
  # @param IntentionActionResult: 意愿核身点头确认模式的结果信息,若未使用该意愿核身功能,该字段返回值可以不处理。
1391
1395
  # 注意:此字段可能返回 null,表示取不到有效值。
1392
1396
  # @type IntentionActionResult: :class:`Tencentcloud::Faceid.v20180301.models.IntentionActionResult`
1397
+ # @param EncryptedBody: 加密后的数据
1398
+ # 注意:此字段可能返回 null,表示取不到有效值。
1399
+ # @type EncryptedBody: String
1393
1400
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1394
1401
  # @type RequestId: String
1395
1402
 
1396
- attr_accessor :Text, :IdCardData, :BestFrame, :VideoData, :Encryption, :IntentionVerifyData, :IntentionQuestionResult, :IntentionActionResult, :RequestId
1403
+ attr_accessor :Text, :IdCardData, :BestFrame, :VideoData, :Encryption, :IntentionVerifyData, :IntentionQuestionResult, :IntentionActionResult, :EncryptedBody, :RequestId
1397
1404
 
1398
- def initialize(text=nil, idcarddata=nil, bestframe=nil, videodata=nil, encryption=nil, intentionverifydata=nil, intentionquestionresult=nil, intentionactionresult=nil, requestid=nil)
1405
+ def initialize(text=nil, idcarddata=nil, bestframe=nil, videodata=nil, encryption=nil, intentionverifydata=nil, intentionquestionresult=nil, intentionactionresult=nil, encryptedbody=nil, requestid=nil)
1399
1406
  @Text = text
1400
1407
  @IdCardData = idcarddata
1401
1408
  @BestFrame = bestframe
@@ -1404,6 +1411,7 @@ module TencentCloud
1404
1411
  @IntentionVerifyData = intentionverifydata
1405
1412
  @IntentionQuestionResult = intentionquestionresult
1406
1413
  @IntentionActionResult = intentionactionresult
1414
+ @EncryptedBody = encryptedbody
1407
1415
  @RequestId = requestid
1408
1416
  end
1409
1417
 
@@ -1440,6 +1448,7 @@ module TencentCloud
1440
1448
  @IntentionActionResult = IntentionActionResult.new
1441
1449
  @IntentionActionResult.deserialize(params['IntentionActionResult'])
1442
1450
  end
1451
+ @EncryptedBody = params['EncryptedBody']
1443
1452
  @RequestId = params['RequestId']
1444
1453
  end
1445
1454
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-faceid
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.697
4
+ version: 3.0.699
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-09 00:00:00.000000000 Z
11
+ date: 2023-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common