tencentcloud-sdk-ocr 3.0.830 → 3.0.831
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20181119/models.rb +26 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d61afe2a1d2f18fef4cdb36694d04165f96b434
|
4
|
+
data.tar.gz: ee975a88ab6b1101fad1d4dfb0ff3eabe0760090
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 896262f4883dbe4807b2a5343a0c040f4bad25c20fcc0390e53842039b1e7f8024bde6b59c9fa3178773e137af6e698177afdb7dacc5a2e1074d20d4f87e9f00
|
7
|
+
data.tar.gz: 827dfe5eb044ca91a5d9df4e3973ada5293ea8678187725ca1a7da4bad19446cd415887f49a81e7a4e2d36b791bdf64502f086cfd80c7dfbc45f21d4b150d28d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.831
|
data/lib/v20181119/models.rb
CHANGED
@@ -685,12 +685,24 @@ module TencentCloud
|
|
685
685
|
# @param Angle: 图片旋转角度(角度制),文本的水平方向为0度;顺时针为正,角度范围是0-360度
|
686
686
|
|
687
687
|
# @type Angle: Float
|
688
|
+
# @param NationalEmblem: 是否有国徽。0为没有,1为有。
|
689
|
+
# @type NationalEmblem: Boolean
|
690
|
+
# @param QRCode: 是否有二维码。0为没有,1为有。
|
691
|
+
# @type QRCode: Boolean
|
692
|
+
# @param Seal: 是否有印章。0为没有,1为有。
|
693
|
+
# @type Seal: Boolean
|
694
|
+
# @param Title: 标题
|
695
|
+
# @type Title: String
|
696
|
+
# @param SerialNumber: 编号
|
697
|
+
# @type SerialNumber: String
|
698
|
+
# @param RegistrationAuthority: 登记机关
|
699
|
+
# @type RegistrationAuthority: String
|
688
700
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
689
701
|
# @type RequestId: String
|
690
702
|
|
691
|
-
attr_accessor :RegNum, :Name, :Capital, :Person, :Address, :Business, :Type, :Period, :ComposingForm, :SetDate, :RecognizeWarnCode, :RecognizeWarnMsg, :IsDuplication, :RegistrationDate, :Angle, :RequestId
|
703
|
+
attr_accessor :RegNum, :Name, :Capital, :Person, :Address, :Business, :Type, :Period, :ComposingForm, :SetDate, :RecognizeWarnCode, :RecognizeWarnMsg, :IsDuplication, :RegistrationDate, :Angle, :NationalEmblem, :QRCode, :Seal, :Title, :SerialNumber, :RegistrationAuthority, :RequestId
|
692
704
|
|
693
|
-
def initialize(regnum=nil, name=nil, capital=nil, person=nil, address=nil, business=nil, type=nil, period=nil, composingform=nil, setdate=nil, recognizewarncode=nil, recognizewarnmsg=nil, isduplication=nil, registrationdate=nil, angle=nil, requestid=nil)
|
705
|
+
def initialize(regnum=nil, name=nil, capital=nil, person=nil, address=nil, business=nil, type=nil, period=nil, composingform=nil, setdate=nil, recognizewarncode=nil, recognizewarnmsg=nil, isduplication=nil, registrationdate=nil, angle=nil, nationalemblem=nil, qrcode=nil, seal=nil, title=nil, serialnumber=nil, registrationauthority=nil, requestid=nil)
|
694
706
|
@RegNum = regnum
|
695
707
|
@Name = name
|
696
708
|
@Capital = capital
|
@@ -706,6 +718,12 @@ module TencentCloud
|
|
706
718
|
@IsDuplication = isduplication
|
707
719
|
@RegistrationDate = registrationdate
|
708
720
|
@Angle = angle
|
721
|
+
@NationalEmblem = nationalemblem
|
722
|
+
@QRCode = qrcode
|
723
|
+
@Seal = seal
|
724
|
+
@Title = title
|
725
|
+
@SerialNumber = serialnumber
|
726
|
+
@RegistrationAuthority = registrationauthority
|
709
727
|
@RequestId = requestid
|
710
728
|
end
|
711
729
|
|
@@ -725,6 +743,12 @@ module TencentCloud
|
|
725
743
|
@IsDuplication = params['IsDuplication']
|
726
744
|
@RegistrationDate = params['RegistrationDate']
|
727
745
|
@Angle = params['Angle']
|
746
|
+
@NationalEmblem = params['NationalEmblem']
|
747
|
+
@QRCode = params['QRCode']
|
748
|
+
@Seal = params['Seal']
|
749
|
+
@Title = params['Title']
|
750
|
+
@SerialNumber = params['SerialNumber']
|
751
|
+
@RegistrationAuthority = params['RegistrationAuthority']
|
728
752
|
@RequestId = params['RequestId']
|
729
753
|
end
|
730
754
|
end
|
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.
|
4
|
+
version: 3.0.831
|
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-05-
|
11
|
+
date: 2024-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|