tencentcloud-sdk-faceid 3.0.698 → 3.0.699
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180301/models.rb +13 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c591189c0b5c431ab266a36c247ce6cc35910ce5
|
4
|
+
data.tar.gz: b63eac4417118b52c3919988c45b3c2e55cd197f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf988904c5073fa76550598f96465509a87d5d5bf38c3d0796ed1fb7be403421f52aebb6380afe8d5e1885599049f68f866c62d149ddfedd1ccf69838a14f183
|
7
|
+
data.tar.gz: cbb5fa3e5bdd905a1304b5dbecc0f6622684977dd7ffbca35681b162f5320809f9e414c548a8e13abe21c822b07f41c13af08bb52f8ceaa17139a38252e31d5c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.699
|
data/lib/v20180301/models.rb
CHANGED
@@ -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.
|
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-
|
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
|