tencentcloud-sdk-ocr 3.0.540 → 3.0.542

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2bd3fb27d98c9d51c4f224f298881a20f72f3ba7
4
- data.tar.gz: 86a0156fea70cca9645dc80665dea51808080c87
3
+ metadata.gz: e2495a04039f4236c65a32b966bcabd2232eda53
4
+ data.tar.gz: 27b783f0f5b8a09476bd87b65cb174c56aeda891
5
5
  SHA512:
6
- metadata.gz: 1f27e732ce120edd839ef148848decbb04163b307269704452d2154d7e2abcae7d5c5229e1f8ed334797009ee140cd0fd09ace94b3bcca9c73720362601bff81
7
- data.tar.gz: 5aea94c366ff31d1074818f8c013a96a25cb734e78577f7e4c4c7bb16a916df753d08fc5078d2801273b41bbb27a9e8ae41ecc8ca0885975a7aea66682d4bdb4
6
+ metadata.gz: 3e75c6bfb83dc5c5133c557c8cc479cdafda2cae47e4de1dcf36a41aa23edc0c48237e1628c2f41829b3cbe4ef308ace0ac37b013aecdbd5338833c6af08f40e
7
+ data.tar.gz: 2a3cc6d4098c13e91ec492b49bfb30c1387c0761e4a88e9b4ad681233ec1d02a7337cd3ca7c0a8e2d82c814ed552e785eaf1c9e1b3adfd0f95407288d33c80a4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.540
1
+ 3.0.542
@@ -1509,6 +1509,8 @@ module TencentCloud
1509
1509
 
1510
1510
  # 印尼身份证识别
1511
1511
 
1512
+ # 默认接口请求频率限制:20次/秒。
1513
+
1512
1514
  # @param request: Request instance for RecognizeIndonesiaIDCardOCR.
1513
1515
  # @type request: :class:`Tencentcloud::ocr::V20181119::RecognizeIndonesiaIDCardOCRRequest`
1514
1516
  # @rtype: :class:`Tencentcloud::ocr::V20181119::RecognizeIndonesiaIDCardOCRResponse`
@@ -4833,12 +4833,16 @@ module TencentCloud
4833
4833
  # @type IssuedDate: String
4834
4834
  # @param Photo: 人像截图
4835
4835
  # @type Photo: String
4836
+ # @param Provinsi: 省份,Scene为V2时支持识别
4837
+ # @type Provinsi: String
4838
+ # @param Kota: 城市,Scene为V2时支持识别
4839
+ # @type Kota: String
4836
4840
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4837
4841
  # @type RequestId: String
4838
4842
 
4839
- attr_accessor :NIK, :Nama, :TempatTglLahir, :JenisKelamin, :GolDarah, :Alamat, :RTRW, :KelDesa, :Kecamatan, :Agama, :StatusPerkawinan, :Perkerjaan, :KewargaNegaraan, :BerlakuHingga, :IssuedDate, :Photo, :RequestId
4843
+ attr_accessor :NIK, :Nama, :TempatTglLahir, :JenisKelamin, :GolDarah, :Alamat, :RTRW, :KelDesa, :Kecamatan, :Agama, :StatusPerkawinan, :Perkerjaan, :KewargaNegaraan, :BerlakuHingga, :IssuedDate, :Photo, :Provinsi, :Kota, :RequestId
4840
4844
 
4841
- def initialize(nik=nil, nama=nil, tempattgllahir=nil, jeniskelamin=nil, goldarah=nil, alamat=nil, rtrw=nil, keldesa=nil, kecamatan=nil, agama=nil, statusperkawinan=nil, perkerjaan=nil, kewarganegaraan=nil, berlakuhingga=nil, issueddate=nil, photo=nil, requestid=nil)
4845
+ def initialize(nik=nil, nama=nil, tempattgllahir=nil, jeniskelamin=nil, goldarah=nil, alamat=nil, rtrw=nil, keldesa=nil, kecamatan=nil, agama=nil, statusperkawinan=nil, perkerjaan=nil, kewarganegaraan=nil, berlakuhingga=nil, issueddate=nil, photo=nil, provinsi=nil, kota=nil, requestid=nil)
4842
4846
  @NIK = nik
4843
4847
  @Nama = nama
4844
4848
  @TempatTglLahir = tempattgllahir
@@ -4855,6 +4859,8 @@ module TencentCloud
4855
4859
  @BerlakuHingga = berlakuhingga
4856
4860
  @IssuedDate = issueddate
4857
4861
  @Photo = photo
4862
+ @Provinsi = provinsi
4863
+ @Kota = kota
4858
4864
  @RequestId = requestid
4859
4865
  end
4860
4866
 
@@ -4875,6 +4881,8 @@ module TencentCloud
4875
4881
  @BerlakuHingga = params['BerlakuHingga']
4876
4882
  @IssuedDate = params['IssuedDate']
4877
4883
  @Photo = params['Photo']
4884
+ @Provinsi = params['Provinsi']
4885
+ @Kota = params['Kota']
4878
4886
  @RequestId = params['RequestId']
4879
4887
  end
4880
4888
  end
@@ -6075,12 +6083,21 @@ module TencentCloud
6075
6083
 
6076
6084
  # 智慧表单上传文件信息
6077
6085
  class SmartFormFileUrl < TencentCloud::Common::AbstractModel
6086
+ # @param FileUrl: 文件url地址
6087
+ # @type FileUrl: String
6088
+ # @param FileOrderNumber: 文件的顺序,顺序从1开始
6089
+ # @type FileOrderNumber: Integer
6078
6090
 
6091
+ attr_accessor :FileUrl, :FileOrderNumber
6079
6092
 
6080
- def initialize()
6093
+ def initialize(fileurl=nil, fileordernumber=nil)
6094
+ @FileUrl = fileurl
6095
+ @FileOrderNumber = fileordernumber
6081
6096
  end
6082
6097
 
6083
6098
  def deserialize(params)
6099
+ @FileUrl = params['FileUrl']
6100
+ @FileOrderNumber = params['FileOrderNumber']
6084
6101
  end
6085
6102
  end
6086
6103
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ocr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.540
4
+ version: 3.0.542
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-29 00:00:00.000000000 Z
11
+ date: 2023-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common