tencentcloud-sdk-faceid 3.0.961 → 3.0.963

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 +14 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ebf161e99f933756a38176dabcf3801b96bdaa11
4
- data.tar.gz: eb5b01a90239724c1cc0c6304643317799668ee7
3
+ metadata.gz: 8092ffda55001e646483628e004d04b8a0938e41
4
+ data.tar.gz: 1d8a27d0698ccc9fde7733d8b11ea49f5918f19e
5
5
  SHA512:
6
- metadata.gz: 40a9bfb928332a97c375cb628e07feac7c03aa7c77d9666fdd64c1a299a3c5c48d1ad7808356d2f99cf325306a7ff8278057c9c03936ce08396a33a238faacd7
7
- data.tar.gz: e8030865f7f94eabc61be71b7a16c054451086aeaecc25d69165d3886633a6e9c716e4e56d9eac0515f9963ee794ac89b83addda750d08ce41d87ceb472820cd
6
+ metadata.gz: 3e117437ae5cddfad0f72b89672cbc2b4f8a8d169fde28fdeffddf23ac828e2438717382faeab636be6b120b0fb357cd909ce0b65faa53dedf7021fe8e65d632
7
+ data.tar.gz: 128119a3607bb05ef145afe72722e348f11d1639014c95d05a8bf90d5ca6848bdacb110a921fb6052a98100f8528d9ac033d549aede43360aeea7d6fe85efc86
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.961
1
+ 3.0.963
@@ -2811,15 +2811,20 @@ module TencentCloud
2811
2811
  # @param Encryption: 敏感数据加密信息。
2812
2812
  # - 对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。
2813
2813
  # @type Encryption: :class:`Tencentcloud::Faceid.v20180301.models.Encryption`
2814
+ # @param Extra: 自定义描述字段。
2815
+ # - 用于描述调用业务信息,出参中将返回此描述字段。
2816
+ # - 每个自定义描述字段支持[1,10]个字符。
2817
+ # @type Extra: String
2814
2818
 
2815
- attr_accessor :IdCard, :Name, :ImageBase64, :Optional, :Encryption
2819
+ attr_accessor :IdCard, :Name, :ImageBase64, :Optional, :Encryption, :Extra
2816
2820
 
2817
- def initialize(idcard=nil, name=nil, imagebase64=nil, optional=nil, encryption=nil)
2821
+ def initialize(idcard=nil, name=nil, imagebase64=nil, optional=nil, encryption=nil, extra=nil)
2818
2822
  @IdCard = idcard
2819
2823
  @Name = name
2820
2824
  @ImageBase64 = imagebase64
2821
2825
  @Optional = optional
2822
2826
  @Encryption = encryption
2827
+ @Extra = extra
2823
2828
  end
2824
2829
 
2825
2830
  def deserialize(params)
@@ -2831,6 +2836,7 @@ module TencentCloud
2831
2836
  @Encryption = Encryption.new
2832
2837
  @Encryption.deserialize(params['Encryption'])
2833
2838
  end
2839
+ @Extra = params['Extra']
2834
2840
  end
2835
2841
  end
2836
2842
 
@@ -2846,15 +2852,18 @@ module TencentCloud
2846
2852
  # @type Result: String
2847
2853
  # @param Description: 业务结果描述。
2848
2854
  # @type Description: String
2855
+ # @param Extra: 调用接口中自定义的描述字段。
2856
+ # @type Extra: String
2849
2857
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2850
2858
  # @type RequestId: String
2851
2859
 
2852
- attr_accessor :Sim, :Result, :Description, :RequestId
2860
+ attr_accessor :Sim, :Result, :Description, :Extra, :RequestId
2853
2861
 
2854
- def initialize(sim=nil, result=nil, description=nil, requestid=nil)
2862
+ def initialize(sim=nil, result=nil, description=nil, extra=nil, requestid=nil)
2855
2863
  @Sim = sim
2856
2864
  @Result = result
2857
2865
  @Description = description
2866
+ @Extra = extra
2858
2867
  @RequestId = requestid
2859
2868
  end
2860
2869
 
@@ -2862,6 +2871,7 @@ module TencentCloud
2862
2871
  @Sim = params['Sim']
2863
2872
  @Result = params['Result']
2864
2873
  @Description = params['Description']
2874
+ @Extra = params['Extra']
2865
2875
  @RequestId = params['RequestId']
2866
2876
  end
2867
2877
  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.961
4
+ version: 3.0.963
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
11
+ date: 2024-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common