tencentcloud-sdk-ocr 3.0.970 → 3.0.971
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20181119/models.rb +22 -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: 39687334cbfaca3f4a05061ddb7f3801fff0cd11
|
|
4
|
+
data.tar.gz: 92e3de1acd5e7f013fa83017d3f0374d659dda48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc70c12c99ab12053f78867494461bfff7bbd4be64693ad435e555e33a27322f3d800a01b17aee776c8e85d310481fd91802b059ef3f75260584d22bb08c2186
|
|
7
|
+
data.tar.gz: d2c7ce76602a702665549dbfdf486dfad58941186335d678cd381d554c092fa835689957ffb7f2917c3677f8d4b7ae7046717fadda30d22b23dd3e73ce4338f3
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.971
|
data/lib/v20181119/models.rb
CHANGED
|
@@ -12348,10 +12348,20 @@ module TencentCloud
|
|
|
12348
12348
|
# @type VatElectronicItems: Array
|
|
12349
12349
|
# @param ServiceTypeLabel: 业务类型标志
|
|
12350
12350
|
# @type ServiceTypeLabel: String
|
|
12351
|
+
# @param TotalCnMark: 价税合计(大写)前符号
|
|
12352
|
+
# @type TotalCnMark: String
|
|
12353
|
+
# @param TotalMark: 价税合计(小写)前字样
|
|
12354
|
+
# @type TotalMark: String
|
|
12355
|
+
# @param PretaxAmountMark: 合计金额前字样
|
|
12356
|
+
# @type PretaxAmountMark: String
|
|
12357
|
+
# @param TaxMark: 合计税额前字样
|
|
12358
|
+
# @type TaxMark: String
|
|
12359
|
+
# @param CompanySealMark: 是否有公司印章(0:没有,1:有)
|
|
12360
|
+
# @type CompanySealMark: Integer
|
|
12351
12361
|
|
|
12352
|
-
attr_accessor :Title, :Number, :Date, :PretaxAmount, :Tax, :Total, :TotalCn, :Seller, :SellerTaxID, :Buyer, :BuyerTaxID, :Issuer, :Remark, :SubTotal, :SubTax, :VatElectronicItems, :ServiceTypeLabel
|
|
12362
|
+
attr_accessor :Title, :Number, :Date, :PretaxAmount, :Tax, :Total, :TotalCn, :Seller, :SellerTaxID, :Buyer, :BuyerTaxID, :Issuer, :Remark, :SubTotal, :SubTax, :VatElectronicItems, :ServiceTypeLabel, :TotalCnMark, :TotalMark, :PretaxAmountMark, :TaxMark, :CompanySealMark
|
|
12353
12363
|
|
|
12354
|
-
def initialize(title=nil, number=nil, date=nil, pretaxamount=nil, tax=nil, total=nil, totalcn=nil, seller=nil, sellertaxid=nil, buyer=nil, buyertaxid=nil, issuer=nil, remark=nil, subtotal=nil, subtax=nil, vatelectronicitems=nil, servicetypelabel=nil)
|
|
12364
|
+
def initialize(title=nil, number=nil, date=nil, pretaxamount=nil, tax=nil, total=nil, totalcn=nil, seller=nil, sellertaxid=nil, buyer=nil, buyertaxid=nil, issuer=nil, remark=nil, subtotal=nil, subtax=nil, vatelectronicitems=nil, servicetypelabel=nil, totalcnmark=nil, totalmark=nil, pretaxamountmark=nil, taxmark=nil, companysealmark=nil)
|
|
12355
12365
|
@Title = title
|
|
12356
12366
|
@Number = number
|
|
12357
12367
|
@Date = date
|
|
@@ -12369,6 +12379,11 @@ module TencentCloud
|
|
|
12369
12379
|
@SubTax = subtax
|
|
12370
12380
|
@VatElectronicItems = vatelectronicitems
|
|
12371
12381
|
@ServiceTypeLabel = servicetypelabel
|
|
12382
|
+
@TotalCnMark = totalcnmark
|
|
12383
|
+
@TotalMark = totalmark
|
|
12384
|
+
@PretaxAmountMark = pretaxamountmark
|
|
12385
|
+
@TaxMark = taxmark
|
|
12386
|
+
@CompanySealMark = companysealmark
|
|
12372
12387
|
end
|
|
12373
12388
|
|
|
12374
12389
|
def deserialize(params)
|
|
@@ -12396,6 +12411,11 @@ module TencentCloud
|
|
|
12396
12411
|
end
|
|
12397
12412
|
end
|
|
12398
12413
|
@ServiceTypeLabel = params['ServiceTypeLabel']
|
|
12414
|
+
@TotalCnMark = params['TotalCnMark']
|
|
12415
|
+
@TotalMark = params['TotalMark']
|
|
12416
|
+
@PretaxAmountMark = params['PretaxAmountMark']
|
|
12417
|
+
@TaxMark = params['TaxMark']
|
|
12418
|
+
@CompanySealMark = params['CompanySealMark']
|
|
12399
12419
|
end
|
|
12400
12420
|
end
|
|
12401
12421
|
|
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.971
|
|
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-
|
|
11
|
+
date: 2024-12-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|