tencentcloud-sdk-faceid 3.0.1100 → 3.0.1121

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 +42 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f34eabef58a8cb1819e44e1e68307bbc8e4bb6d
4
- data.tar.gz: d7ed70f0ab34c7407fc7a169d2970d07d873582f
3
+ metadata.gz: 45dd027364f9c68fd6c7b3e335a0638275617c1a
4
+ data.tar.gz: 9ceb52e0ee3b587deef1918bedd287cd1f0a221d
5
5
  SHA512:
6
- metadata.gz: f3ce624b9a19ca5a878064d5e7c5f4998c3ede2f431e4379688307553e17c3c7ada25e8d53125edbe12ff4474cda236b4b534b25dcc4e0095a5104ce7b690cbb
7
- data.tar.gz: e7243fd738ff7579df64cd845e27bb9bfc96e511f4f9f3aa8cf2f907f8e9ac36bbd130b039cb6f3e34e0e99fe4cea33772168fda5a1818e049e4e61cab4b0cfe
6
+ metadata.gz: 57c0d259e831b90d5080bfd8e23bd2ac2aef2f1b0e635dbf45aa6f2ea53267fe296ff511495f6d4d2ff9bb1aa2669d3533d4b51d52497a4707e42813de919124
7
+ data.tar.gz: ef223c8489636f50703ed4e4a706e7eefeb28180d2a5c1ab6313cf11bb6e932c82ad95a47e40d5f12c60e89ee35471e9f931429d16e08bcf45f89ddfd64e5e57
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1100
1
+ 3.0.1121
@@ -319,8 +319,8 @@ module TencentCloud
319
319
 
320
320
  attr_accessor :ReqTime, :Seq, :IdCard, :Idcard, :Name, :Sim, :IsNeedCharge, :ChargeType, :ErrorCode, :ErrorMessage
321
321
  extend Gem::Deprecate
322
- deprecate :Idcard, :none, 2025, 7
323
- deprecate :Idcard=, :none, 2025, 7
322
+ deprecate :Idcard, :none, 2025, 8
323
+ deprecate :Idcard=, :none, 2025, 8
324
324
 
325
325
  def initialize(reqtime=nil, seq=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, chargetype=nil, errorcode=nil, errormessage=nil)
326
326
  @ReqTime = reqtime
@@ -1656,7 +1656,7 @@ module TencentCloud
1656
1656
 
1657
1657
  # GetDetectInfoEnhanced返回参数结构体
1658
1658
  class GetDetectInfoEnhancedResponse < TencentCloud::Common::AbstractModel
1659
- # @param Text: 文本类信息。
1659
+ # @param Text: 人脸核身识别结果及文本类信息。
1660
1660
  # 注意:此字段可能返回 null,表示取不到有效值。
1661
1661
  # @type Text: :class:`Tencentcloud::Faceid.v20180301.models.DetectInfoText`
1662
1662
  # @param IdCardData: 身份证照片信息。
@@ -1687,12 +1687,24 @@ module TencentCloud
1687
1687
  # @param EncryptedBody: 加密后的数据。
1688
1688
  # 注意:此字段可能返回 null,表示取不到有效值。
1689
1689
  # @type EncryptedBody: String
1690
+ # @param IsVerifyIntention: 本次请求是否配置开启意愿校验。
1691
+ # false:未开启意愿校验
1692
+ # true:已开启意愿校验
1693
+ # 说明:若请求开启了意愿校验,可结合IntentionVerifyType中具体使用的校验模式从对应的出参Result中获取最终的核验结果;若请求没有开启意愿校验,则可在出参Text中获取最终的核验结果。
1694
+ # @type IsVerifyIntention: Boolean
1695
+ # @param IntentionVerifyType: 本次请求意愿校验使用的具体模式。
1696
+ # 0:问答模式
1697
+ # 1:点头确认模式
1698
+ # 2:朗读模式
1699
+ # 若未使用意愿核身功能,该字段返回值可以不处理。
1700
+ # 注意:此字段可能返回 null,表示取不到有效值
1701
+ # @type IntentionVerifyType: String
1690
1702
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1691
1703
  # @type RequestId: String
1692
1704
 
1693
- attr_accessor :Text, :IdCardData, :BestFrame, :VideoData, :Encryption, :IntentionVerifyData, :IntentionQuestionResult, :IntentionActionResult, :EncryptedBody, :RequestId
1705
+ attr_accessor :Text, :IdCardData, :BestFrame, :VideoData, :Encryption, :IntentionVerifyData, :IntentionQuestionResult, :IntentionActionResult, :EncryptedBody, :IsVerifyIntention, :IntentionVerifyType, :RequestId
1694
1706
 
1695
- def initialize(text=nil, idcarddata=nil, bestframe=nil, videodata=nil, encryption=nil, intentionverifydata=nil, intentionquestionresult=nil, intentionactionresult=nil, encryptedbody=nil, requestid=nil)
1707
+ def initialize(text=nil, idcarddata=nil, bestframe=nil, videodata=nil, encryption=nil, intentionverifydata=nil, intentionquestionresult=nil, intentionactionresult=nil, encryptedbody=nil, isverifyintention=nil, intentionverifytype=nil, requestid=nil)
1696
1708
  @Text = text
1697
1709
  @IdCardData = idcarddata
1698
1710
  @BestFrame = bestframe
@@ -1702,6 +1714,8 @@ module TencentCloud
1702
1714
  @IntentionQuestionResult = intentionquestionresult
1703
1715
  @IntentionActionResult = intentionactionresult
1704
1716
  @EncryptedBody = encryptedbody
1717
+ @IsVerifyIntention = isverifyintention
1718
+ @IntentionVerifyType = intentionverifytype
1705
1719
  @RequestId = requestid
1706
1720
  end
1707
1721
 
@@ -1739,6 +1753,8 @@ module TencentCloud
1739
1753
  @IntentionActionResult.deserialize(params['IntentionActionResult'])
1740
1754
  end
1741
1755
  @EncryptedBody = params['EncryptedBody']
1756
+ @IsVerifyIntention = params['IsVerifyIntention']
1757
+ @IntentionVerifyType = params['IntentionVerifyType']
1742
1758
  @RequestId = params['RequestId']
1743
1759
  end
1744
1760
  end
@@ -1886,7 +1902,7 @@ module TencentCloud
1886
1902
 
1887
1903
  # GetEidResult返回参数结构体
1888
1904
  class GetEidResultResponse < TencentCloud::Common::AbstractModel
1889
- # @param Text: 文本类信息。
1905
+ # @param Text: 人脸核身识别结果及文本类信息。
1890
1906
  # - 基于对敏感信息的保护,验证使用的姓名和身份证号统一通过加密后从EidInfo参数中返回。
1891
1907
  # - 如需获取请在控制台申请返回身份信息,详见[E证通获取实名信息指引](https://cloud.tencent.com/document/product/1007/63370)。
1892
1908
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1916,12 +1932,24 @@ module TencentCloud
1916
1932
  # - 若未使用该意愿核身功能,该字段返回值可以不处理。
1917
1933
  # 注意:此字段可能返回 null,表示取不到有效值。
1918
1934
  # @type IntentionActionResult: :class:`Tencentcloud::Faceid.v20180301.models.IntentionActionResult`
1935
+ # @param IsVerifyIntention: 本次请求是否配置开启意愿校验。
1936
+ # false:未开启意愿校验
1937
+ # true:已开启意愿校验
1938
+ # 说明:若请求开启了意愿校验,可结合IntentionVerifyType中具体使用的校验模式从对应的出参Result中获取最终的核验结果;若请求没有开启意愿校验,则可在出参Text中获取最终的核验结果。
1939
+ # @type IsVerifyIntention: Boolean
1940
+ # @param IntentionVerifyType: 本次请求意愿校验使用的具体模式。
1941
+ # 0:问答模式
1942
+ # 1:点头确认模式
1943
+ # 2:朗读模式
1944
+ # 若未使用意愿核身功能,该字段返回值可以不处理。
1945
+ # 注意:此字段可能返回 null,表示取不到有效值
1946
+ # @type IntentionVerifyType: String
1919
1947
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1920
1948
  # @type RequestId: String
1921
1949
 
1922
- attr_accessor :Text, :IdCardData, :BestFrame, :EidInfo, :IntentionVerifyData, :IntentionQuestionResult, :IntentionActionResult, :RequestId
1950
+ attr_accessor :Text, :IdCardData, :BestFrame, :EidInfo, :IntentionVerifyData, :IntentionQuestionResult, :IntentionActionResult, :IsVerifyIntention, :IntentionVerifyType, :RequestId
1923
1951
 
1924
- def initialize(text=nil, idcarddata=nil, bestframe=nil, eidinfo=nil, intentionverifydata=nil, intentionquestionresult=nil, intentionactionresult=nil, requestid=nil)
1952
+ def initialize(text=nil, idcarddata=nil, bestframe=nil, eidinfo=nil, intentionverifydata=nil, intentionquestionresult=nil, intentionactionresult=nil, isverifyintention=nil, intentionverifytype=nil, requestid=nil)
1925
1953
  @Text = text
1926
1954
  @IdCardData = idcarddata
1927
1955
  @BestFrame = bestframe
@@ -1929,6 +1957,8 @@ module TencentCloud
1929
1957
  @IntentionVerifyData = intentionverifydata
1930
1958
  @IntentionQuestionResult = intentionquestionresult
1931
1959
  @IntentionActionResult = intentionactionresult
1960
+ @IsVerifyIntention = isverifyintention
1961
+ @IntentionVerifyType = intentionverifytype
1932
1962
  @RequestId = requestid
1933
1963
  end
1934
1964
 
@@ -1961,6 +1991,8 @@ module TencentCloud
1961
1991
  @IntentionActionResult = IntentionActionResult.new
1962
1992
  @IntentionActionResult.deserialize(params['IntentionActionResult'])
1963
1993
  end
1994
+ @IsVerifyIntention = params['IsVerifyIntention']
1995
+ @IntentionVerifyType = params['IntentionVerifyType']
1964
1996
  @RequestId = params['RequestId']
1965
1997
  end
1966
1998
  end
@@ -3159,8 +3191,8 @@ module TencentCloud
3159
3191
 
3160
3192
  attr_accessor :IntentionVerifyVideo, :AsrResult, :ErrorCode, :ErrorMessage, :IntentionVerifyBestFrame, :AsrResultSimilarity
3161
3193
  extend Gem::Deprecate
3162
- deprecate :AsrResultSimilarity, :none, 2025, 7
3163
- deprecate :AsrResultSimilarity=, :none, 2025, 7
3194
+ deprecate :AsrResultSimilarity, :none, 2025, 8
3195
+ deprecate :AsrResultSimilarity=, :none, 2025, 8
3164
3196
 
3165
3197
  def initialize(intentionverifyvideo=nil, asrresult=nil, errorcode=nil, errormessage=nil, intentionverifybestframe=nil, asrresultsimilarity=nil)
3166
3198
  @IntentionVerifyVideo = intentionverifyvideo
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.1100
4
+ version: 3.0.1121
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-07-13 00:00:00.000000000 Z
11
+ date: 2025-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common