tencentcloud-sdk-faceid 3.0.1073 → 3.0.1078

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180301/models.rb +46 -8
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad6812338df2f8d084bb6c543c7ba6cb20dfc2f2
4
- data.tar.gz: a7382d64ea83cd4bfe2ef156ded2365095fc87d4
3
+ metadata.gz: 526e38bbbb0c5eee22c345f00c1fae52f85d357c
4
+ data.tar.gz: 62132390e2a25c52a4a1e2a95ee2c0ea0a05bee3
5
5
  SHA512:
6
- metadata.gz: e40836fa02d8c237bfc25fda69ed2ae675613fe19ff8c3ac34543701c8bb95db7a28d51b9cd9676ea0e9b08d1c30fa9c3f3ad008eb4914577816b6e66f90007d
7
- data.tar.gz: 7f9dc6d33ed0506354b06f217ce069b41d67bf80876b629e393947f388dacb3cd08f80a2e92a7a0303d47078111f8cbf3f76d7eb715255b707c20ef00c4f5551
6
+ metadata.gz: 8a4c6046c0318de001a1f22fe6901da176d487643205f90b4fc0e40202eada6eeccf3db40c3bd1f08f8aa93c3a9720ce8391e821a5b235e5d3463236a0d56772
7
+ data.tar.gz: a21f69d469438f0d938dfac665da198e73ee27fa79bef8604769dbd75ec3d38dcafdc117d3e40cc4ccacc815e10330a8428a30e31a910c828575e3ef8c03f8e4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1073
1
+ 3.0.1078
@@ -316,8 +316,8 @@ module TencentCloud
316
316
 
317
317
  attr_accessor :ReqTime, :Seq, :IdCard, :Idcard, :Name, :Sim, :IsNeedCharge, :ChargeType, :ErrorCode, :ErrorMessage
318
318
  extend Gem::Deprecate
319
- deprecate :Idcard, :none, 2025, 5
320
- deprecate :Idcard=, :none, 2025, 5
319
+ deprecate :Idcard, :none, 2025, 6
320
+ deprecate :Idcard=, :none, 2025, 6
321
321
 
322
322
  def initialize(reqtime=nil, seq=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, chargetype=nil, errorcode=nil, errormessage=nil)
323
323
  @ReqTime = reqtime
@@ -1358,15 +1358,27 @@ module TencentCloud
1358
1358
  # @param LivenessVideo: 活体视频的base64编码。
1359
1359
  # 注意:此字段可能返回 null,表示取不到有效值。
1360
1360
  # @type LivenessVideo: String
1361
+ # @param LivenessVideos: 当次token中所有用户活体视频的COS存储路径,仅当您开启数据存储服务且“IsReturnAllVideo”入参取值为true 时返回。
1362
+ # 注意:此字段可能返回 null,表示取不到有效值。
1363
+ # @type LivenessVideos: Array
1361
1364
 
1362
- attr_accessor :LivenessVideo
1365
+ attr_accessor :LivenessVideo, :LivenessVideos
1363
1366
 
1364
- def initialize(livenessvideo=nil)
1367
+ def initialize(livenessvideo=nil, livenessvideos=nil)
1365
1368
  @LivenessVideo = livenessvideo
1369
+ @LivenessVideos = livenessvideos
1366
1370
  end
1367
1371
 
1368
1372
  def deserialize(params)
1369
1373
  @LivenessVideo = params['LivenessVideo']
1374
+ unless params['LivenessVideos'].nil?
1375
+ @LivenessVideos = []
1376
+ params['LivenessVideos'].each do |i|
1377
+ videodetaildata_tmp = VideoDetailData.new
1378
+ videodetaildata_tmp.deserialize(i)
1379
+ @LivenessVideos << videodetaildata_tmp
1380
+ end
1381
+ end
1370
1382
  end
1371
1383
  end
1372
1384
 
@@ -1599,10 +1611,12 @@ module TencentCloud
1599
1611
  # @type Encryption: :class:`Tencentcloud::Faceid.v20180301.models.Encryption`
1600
1612
  # @param IsEncryptResponse: 是否对回包整体进行加密。
1601
1613
  # @type IsEncryptResponse: Boolean
1614
+ # @param IsReturnAllVideo: 是否需要返回认证中间过程的刷脸重试视频,默认不开启,多段视频需要存储到COS空间中,因此开启后还需要额外开启数据存储服务才可生效。详见[数据存储指引](https://cloud.tencent.com/document/product/1007/104229)。
1615
+ # @type IsReturnAllVideo: Boolean
1602
1616
 
1603
- attr_accessor :BizToken, :RuleId, :InfoType, :BestFramesCount, :IsCutIdCardImage, :IsNeedIdCardAvatar, :IsEncrypt, :Encryption, :IsEncryptResponse
1617
+ attr_accessor :BizToken, :RuleId, :InfoType, :BestFramesCount, :IsCutIdCardImage, :IsNeedIdCardAvatar, :IsEncrypt, :Encryption, :IsEncryptResponse, :IsReturnAllVideo
1604
1618
 
1605
- def initialize(biztoken=nil, ruleid=nil, infotype=nil, bestframescount=nil, iscutidcardimage=nil, isneedidcardavatar=nil, isencrypt=nil, encryption=nil, isencryptresponse=nil)
1619
+ def initialize(biztoken=nil, ruleid=nil, infotype=nil, bestframescount=nil, iscutidcardimage=nil, isneedidcardavatar=nil, isencrypt=nil, encryption=nil, isencryptresponse=nil, isreturnallvideo=nil)
1606
1620
  @BizToken = biztoken
1607
1621
  @RuleId = ruleid
1608
1622
  @InfoType = infotype
@@ -1612,6 +1626,7 @@ module TencentCloud
1612
1626
  @IsEncrypt = isencrypt
1613
1627
  @Encryption = encryption
1614
1628
  @IsEncryptResponse = isencryptresponse
1629
+ @IsReturnAllVideo = isreturnallvideo
1615
1630
  end
1616
1631
 
1617
1632
  def deserialize(params)
@@ -1627,6 +1642,7 @@ module TencentCloud
1627
1642
  @Encryption.deserialize(params['Encryption'])
1628
1643
  end
1629
1644
  @IsEncryptResponse = params['IsEncryptResponse']
1645
+ @IsReturnAllVideo = params['IsReturnAllVideo']
1630
1646
  end
1631
1647
  end
1632
1648
 
@@ -3135,8 +3151,8 @@ module TencentCloud
3135
3151
 
3136
3152
  attr_accessor :IntentionVerifyVideo, :AsrResult, :ErrorCode, :ErrorMessage, :IntentionVerifyBestFrame, :AsrResultSimilarity
3137
3153
  extend Gem::Deprecate
3138
- deprecate :AsrResultSimilarity, :none, 2025, 5
3139
- deprecate :AsrResultSimilarity=, :none, 2025, 5
3154
+ deprecate :AsrResultSimilarity, :none, 2025, 6
3155
+ deprecate :AsrResultSimilarity=, :none, 2025, 6
3140
3156
 
3141
3157
  def initialize(intentionverifyvideo=nil, asrresult=nil, errorcode=nil, errormessage=nil, intentionverifybestframe=nil, asrresultsimilarity=nil)
3142
3158
  @IntentionVerifyVideo = intentionverifyvideo
@@ -4174,6 +4190,28 @@ module TencentCloud
4174
4190
  end
4175
4191
  end
4176
4192
 
4193
+ # 核身过程视频信息。
4194
+ class VideoDetailData < TencentCloud::Common::AbstractModel
4195
+ # @param Seq: 本次活体一比一请求的唯一标记。
4196
+ # 注意:此字段可能返回 null,表示取不到有效值。
4197
+ # @type Seq: String
4198
+ # @param Video: 活体视频的base64编码。
4199
+ # 注意:此字段可能返回 null,表示取不到有效值。
4200
+ # @type Video: String
4201
+
4202
+ attr_accessor :Seq, :Video
4203
+
4204
+ def initialize(seq=nil, video=nil)
4205
+ @Seq = seq
4206
+ @Video = video
4207
+ end
4208
+
4209
+ def deserialize(params)
4210
+ @Seq = params['Seq']
4211
+ @Video = params['Video']
4212
+ end
4213
+ end
4214
+
4177
4215
  # 账单详情
4178
4216
  class WeChatBillDetail < TencentCloud::Common::AbstractModel
4179
4217
  # @param BizToken: token
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.1073
4
+ version: 3.0.1078
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-03 00:00:00.000000000 Z
11
+ date: 2025-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - lib/tencentcloud-sdk-faceid.rb
36
37
  - lib/v20180301/client.rb
37
38
  - lib/v20180301/models.rb
38
- - lib/tencentcloud-sdk-faceid.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: