tencentcloud-sdk-ocr 3.0.1000 → 3.0.1002
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 +35 -7
- 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: a6f412411d75ad45699b0008d8ccc3eb467b6b91
|
4
|
+
data.tar.gz: 2c9330d884e9b2b6a9ba50bb5114d549ff1bedc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5ac44d472934dadedc1413210be06d1f3964755e43eee8002d742dd6d5ed8e3a8c27d2db3d4ab0035b77a774fbcdc2a0ffea3a626dd63e77596422ef311f7fb
|
7
|
+
data.tar.gz: 79b274838d8d5b00a6bd48c28395b797629b754ef5c35cd753115840e019e709abf3bfe919154cf76c60e9ccce036057ffee97f3f507f539338a74226c0401b6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1002
|
data/lib/v20181119/models.rb
CHANGED
@@ -272,7 +272,7 @@ module TencentCloud
|
|
272
272
|
# @type DomesticInternationalTag: String
|
273
273
|
# @param DateStart: 客票生效日期
|
274
274
|
# @type DateStart: String
|
275
|
-
# @param DateEnd:
|
275
|
+
# @param DateEnd: 有效截止日期
|
276
276
|
# @type DateEnd: String
|
277
277
|
# @param Endorsement: 签注
|
278
278
|
# @type Endorsement: String
|
@@ -3458,10 +3458,14 @@ module TencentCloud
|
|
3458
3458
|
# @type FareBasis: String
|
3459
3459
|
# @param Allow: 免费行李额
|
3460
3460
|
# @type Allow: String
|
3461
|
+
# @param DateStart: 客票生效日期
|
3462
|
+
# @type DateStart: String
|
3463
|
+
# @param DateEnd: 有效截止日期
|
3464
|
+
# @type DateEnd: String
|
3461
3465
|
|
3462
|
-
attr_accessor :TerminalGetOn, :TerminalGetOff, :Carrier, :FlightNumber, :Seat, :DateGetOn, :TimeGetOn, :FareBasis, :Allow
|
3466
|
+
attr_accessor :TerminalGetOn, :TerminalGetOff, :Carrier, :FlightNumber, :Seat, :DateGetOn, :TimeGetOn, :FareBasis, :Allow, :DateStart, :DateEnd
|
3463
3467
|
|
3464
|
-
def initialize(terminalgeton=nil, terminalgetoff=nil, carrier=nil, flightnumber=nil, seat=nil, dategeton=nil, timegeton=nil, farebasis=nil, allow=nil)
|
3468
|
+
def initialize(terminalgeton=nil, terminalgetoff=nil, carrier=nil, flightnumber=nil, seat=nil, dategeton=nil, timegeton=nil, farebasis=nil, allow=nil, datestart=nil, dateend=nil)
|
3465
3469
|
@TerminalGetOn = terminalgeton
|
3466
3470
|
@TerminalGetOff = terminalgetoff
|
3467
3471
|
@Carrier = carrier
|
@@ -3471,6 +3475,8 @@ module TencentCloud
|
|
3471
3475
|
@TimeGetOn = timegeton
|
3472
3476
|
@FareBasis = farebasis
|
3473
3477
|
@Allow = allow
|
3478
|
+
@DateStart = datestart
|
3479
|
+
@DateEnd = dateend
|
3474
3480
|
end
|
3475
3481
|
|
3476
3482
|
def deserialize(params)
|
@@ -3483,6 +3489,8 @@ module TencentCloud
|
|
3483
3489
|
@TimeGetOn = params['TimeGetOn']
|
3484
3490
|
@FareBasis = params['FareBasis']
|
3485
3491
|
@Allow = params['Allow']
|
3492
|
+
@DateStart = params['DateStart']
|
3493
|
+
@DateEnd = params['DateEnd']
|
3486
3494
|
end
|
3487
3495
|
end
|
3488
3496
|
|
@@ -7864,15 +7872,18 @@ module TencentCloud
|
|
7864
7872
|
# @type PdfPageNumber: Integer
|
7865
7873
|
# @param EnableImageCrop: 是否开启切边增强和弯曲矫正,默认为false不开启
|
7866
7874
|
# @type EnableImageCrop: Boolean
|
7875
|
+
# @param EnableOnlyDetectBorder: 是否只返回检测框,默认false
|
7876
|
+
# @type EnableOnlyDetectBorder: Boolean
|
7867
7877
|
|
7868
|
-
attr_accessor :ImageUrl, :ImageBase64, :IsPdf, :PdfPageNumber, :EnableImageCrop
|
7878
|
+
attr_accessor :ImageUrl, :ImageBase64, :IsPdf, :PdfPageNumber, :EnableImageCrop, :EnableOnlyDetectBorder
|
7869
7879
|
|
7870
|
-
def initialize(imageurl=nil, imagebase64=nil, ispdf=nil, pdfpagenumber=nil, enableimagecrop=nil)
|
7880
|
+
def initialize(imageurl=nil, imagebase64=nil, ispdf=nil, pdfpagenumber=nil, enableimagecrop=nil, enableonlydetectborder=nil)
|
7871
7881
|
@ImageUrl = imageurl
|
7872
7882
|
@ImageBase64 = imagebase64
|
7873
7883
|
@IsPdf = ispdf
|
7874
7884
|
@PdfPageNumber = pdfpagenumber
|
7875
7885
|
@EnableImageCrop = enableimagecrop
|
7886
|
+
@EnableOnlyDetectBorder = enableonlydetectborder
|
7876
7887
|
end
|
7877
7888
|
|
7878
7889
|
def deserialize(params)
|
@@ -7881,6 +7892,7 @@ module TencentCloud
|
|
7881
7892
|
@IsPdf = params['IsPdf']
|
7882
7893
|
@PdfPageNumber = params['PdfPageNumber']
|
7883
7894
|
@EnableImageCrop = params['EnableImageCrop']
|
7895
|
+
@EnableOnlyDetectBorder = params['EnableOnlyDetectBorder']
|
7884
7896
|
end
|
7885
7897
|
end
|
7886
7898
|
|
@@ -13273,10 +13285,18 @@ module TencentCloud
|
|
13273
13285
|
# @type EstateNumber: String
|
13274
13286
|
# @param AreaUnit: 面积单位,仅不动产经营租赁服务发票返回
|
13275
13287
|
# @type AreaUnit: String
|
13288
|
+
# @param Traveler: 出行人,仅旅客运输服务发票返回
|
13289
|
+
# @type Traveler: String
|
13290
|
+
# @param TravelerID: 有效身份证件号,仅旅客运输服务发票返回
|
13291
|
+
# @type TravelerID: String
|
13292
|
+
# @param TravelDate: 出行日期,仅旅客运输服务发票返回
|
13293
|
+
# @type TravelDate: String
|
13294
|
+
# @param TravelLevel: 等级,仅旅客运输服务发票返回
|
13295
|
+
# @type TravelLevel: String
|
13276
13296
|
|
13277
|
-
attr_accessor :Name, :Quantity, :Specification, :Price, :Total, :TaxRate, :Tax, :Unit, :VehicleType, :VehicleBrand, :DeparturePlace, :ArrivalPlace, :TransportItemsName, :PlaceOfBuildingService, :BuildingName, :EstateNumber, :AreaUnit
|
13297
|
+
attr_accessor :Name, :Quantity, :Specification, :Price, :Total, :TaxRate, :Tax, :Unit, :VehicleType, :VehicleBrand, :DeparturePlace, :ArrivalPlace, :TransportItemsName, :PlaceOfBuildingService, :BuildingName, :EstateNumber, :AreaUnit, :Traveler, :TravelerID, :TravelDate, :TravelLevel
|
13278
13298
|
|
13279
|
-
def initialize(name=nil, quantity=nil, specification=nil, price=nil, total=nil, taxrate=nil, tax=nil, unit=nil, vehicletype=nil, vehiclebrand=nil, departureplace=nil, arrivalplace=nil, transportitemsname=nil, placeofbuildingservice=nil, buildingname=nil, estatenumber=nil, areaunit=nil)
|
13299
|
+
def initialize(name=nil, quantity=nil, specification=nil, price=nil, total=nil, taxrate=nil, tax=nil, unit=nil, vehicletype=nil, vehiclebrand=nil, departureplace=nil, arrivalplace=nil, transportitemsname=nil, placeofbuildingservice=nil, buildingname=nil, estatenumber=nil, areaunit=nil, traveler=nil, travelerid=nil, traveldate=nil, travellevel=nil)
|
13280
13300
|
@Name = name
|
13281
13301
|
@Quantity = quantity
|
13282
13302
|
@Specification = specification
|
@@ -13294,6 +13314,10 @@ module TencentCloud
|
|
13294
13314
|
@BuildingName = buildingname
|
13295
13315
|
@EstateNumber = estatenumber
|
13296
13316
|
@AreaUnit = areaunit
|
13317
|
+
@Traveler = traveler
|
13318
|
+
@TravelerID = travelerid
|
13319
|
+
@TravelDate = traveldate
|
13320
|
+
@TravelLevel = travellevel
|
13297
13321
|
end
|
13298
13322
|
|
13299
13323
|
def deserialize(params)
|
@@ -13314,6 +13338,10 @@ module TencentCloud
|
|
13314
13338
|
@BuildingName = params['BuildingName']
|
13315
13339
|
@EstateNumber = params['EstateNumber']
|
13316
13340
|
@AreaUnit = params['AreaUnit']
|
13341
|
+
@Traveler = params['Traveler']
|
13342
|
+
@TravelerID = params['TravelerID']
|
13343
|
+
@TravelDate = params['TravelDate']
|
13344
|
+
@TravelLevel = params['TravelLevel']
|
13317
13345
|
end
|
13318
13346
|
end
|
13319
13347
|
|
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.1002
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|