tencentcloud-sdk-faceid 3.0.960 → 3.0.962

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: 1b633ed7f7678daa29ef45156c8beb79fcb5e699
4
- data.tar.gz: 7bfccd934e389683d924fd055708b4c239188001
3
+ metadata.gz: b0fc2e30de20e9186ece57d74b4b2ef0fda6f595
4
+ data.tar.gz: 92533fadc23c456cf4548e1c80ccf1dd269b6908
5
5
  SHA512:
6
- metadata.gz: e80a23802c73df87d70d9c04ab05ec9aee6f602b646c3a875b89eae0e2656ae4370d79ffe378ece39d521c9f57f8d668802115c6673f281dc973740d4632cd10
7
- data.tar.gz: 918528faad7e80758f805d1bb13d709e7e56b79e520f7fbac1bf59e90a7bf773c5f6499df46a99f102e3323cbb3166f2b2ebb79ef39ca1ab6de783771d280e08
6
+ metadata.gz: 9b7cad4bf31839c202a27bc4874256c4719844a612aa3c418a63c9ce8bc3820f61f7b672f2075a4b052f1cf257bc943bfa68da97873467dbc53136b7f4e1eb9d
7
+ data.tar.gz: 312df42a3c8a0914231d90e108629011e1ceb097e08a75019f32d2b5889469d19220b2dc5e562585485ef62c759e8d24f5551524153adae78ceae31c416e6a91
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.960
1
+ 3.0.962
@@ -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.960
4
+ version: 3.0.962
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-12 00:00:00.000000000 Z
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common