tencentcloud-sdk-faceid 1.0.235 → 1.0.236

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 +17 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e4e7d87824e3cbf2c698a0794f6aa36cb4d68ba3
4
- data.tar.gz: 1b4f115eb60659fadc3f54ae62882323fb97d656
3
+ metadata.gz: 77d30546dc888529ba202752db03c4fdb578d8df
4
+ data.tar.gz: 90a1f95202cc6569f684e872227bfde6259846ad
5
5
  SHA512:
6
- metadata.gz: 6ef7553fe76c4bb9ba58a9a05c91aca945ad23d5c19c433363ebe40559eee26dd481bf011f58a2fd78b76535d0e33e23a6557d03c3b8d2334900039219bc043a
7
- data.tar.gz: 609d6fab9df4cf2b39d7cb512095ce52a61dba1c55a26dc525335f1eaf4310782586a94f4fb65f67a2ccbdecc23ee14a30f9588d704321ce12ca38379a1adc97
6
+ metadata.gz: bc3ced78c30ea7a5b42bc94a3eaf5282b5f69d5596a87ee83bb4200a82efa56e6090ee1fa71a8b6c09d573a320dd1fcf523697e587672e42e9ca53f66ee4342a
7
+ data.tar.gz: 385ab09cd64cd0ac68562a75b89b632aacc4956ab21bb3a9f9093faf52ff1dc7b87587d773f8e3db86d8df87a83666fb1d06e44ee5f83d5fa5094e2a6a99f5ea
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.235
1
+ 1.0.236
@@ -807,15 +807,22 @@ module TencentCloud
807
807
  # @param Avatar: 身份证正面人像图base64编码。
808
808
  # 注意:此字段可能返回 null,表示取不到有效值。
809
809
  # @type Avatar: String
810
+ # @param WarnInfos: 开启身份证防翻拍告警功能后才会返回,返回数组中可能出现的告警码如下:
811
+ # -9102 身份证复印件告警。
812
+ # -9103 身份证翻拍告警。
813
+ # -9106 身份证 PS 告警。
814
+ # 注意:此字段可能返回 null,表示取不到有效值。
815
+ # @type WarnInfos: Array
810
816
 
811
- attr_accessor :OcrFront, :OcrBack, :ProcessedFrontImage, :ProcessedBackImage, :Avatar
817
+ attr_accessor :OcrFront, :OcrBack, :ProcessedFrontImage, :ProcessedBackImage, :Avatar, :WarnInfos
812
818
 
813
- def initialize(ocrfront=nil, ocrback=nil, processedfrontimage=nil, processedbackimage=nil, avatar=nil)
819
+ def initialize(ocrfront=nil, ocrback=nil, processedfrontimage=nil, processedbackimage=nil, avatar=nil, warninfos=nil)
814
820
  @OcrFront = ocrfront
815
821
  @OcrBack = ocrback
816
822
  @ProcessedFrontImage = processedfrontimage
817
823
  @ProcessedBackImage = processedbackimage
818
824
  @Avatar = avatar
825
+ @WarnInfos = warninfos
819
826
  end
820
827
 
821
828
  def deserialize(params)
@@ -824,6 +831,7 @@ module TencentCloud
824
831
  @ProcessedFrontImage = params['ProcessedFrontImage']
825
832
  @ProcessedBackImage = params['ProcessedBackImage']
826
833
  @Avatar = params['Avatar']
834
+ @WarnInfos = params['WarnInfos']
827
835
  end
828
836
  end
829
837
 
@@ -2624,20 +2632,25 @@ module TencentCloud
2624
2632
  # @type Result: String
2625
2633
  # @param Description: 业务结果描述。
2626
2634
  # @type Description: String
2635
+ # @param Isp: 运营商名称。
2636
+ # 取值范围为["","移动","电信","联通"]
2637
+ # @type Isp: String
2627
2638
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2628
2639
  # @type RequestId: String
2629
2640
 
2630
- attr_accessor :Result, :Description, :RequestId
2641
+ attr_accessor :Result, :Description, :Isp, :RequestId
2631
2642
 
2632
- def initialize(result=nil, description=nil, requestid=nil)
2643
+ def initialize(result=nil, description=nil, isp=nil, requestid=nil)
2633
2644
  @Result = result
2634
2645
  @Description = description
2646
+ @Isp = isp
2635
2647
  @RequestId = requestid
2636
2648
  end
2637
2649
 
2638
2650
  def deserialize(params)
2639
2651
  @Result = params['Result']
2640
2652
  @Description = params['Description']
2653
+ @Isp = params['Isp']
2641
2654
  @RequestId = params['RequestId']
2642
2655
  end
2643
2656
  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: 1.0.235
4
+ version: 1.0.236
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-05 00:00:00.000000000 Z
11
+ date: 2022-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common