tencentcloud-sdk-ocr 3.0.1001 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20181119/models.rb +29 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: def23e4ac91c1f94ce799d8206573baed24c572e
4
- data.tar.gz: 39b021a97160e0d20e0e2d55ede785d696e19fec
3
+ metadata.gz: a6f412411d75ad45699b0008d8ccc3eb467b6b91
4
+ data.tar.gz: 2c9330d884e9b2b6a9ba50bb5114d549ff1bedc4
5
5
  SHA512:
6
- metadata.gz: 8e6f923696e5ad790913edc05a4c0c6fdf835787883289c29dbabe5766ff0540e0acffd40549e0c07777ccccda546568a58d912d99ad246d056aaad4ef8f856d
7
- data.tar.gz: 12aba2d044f6a5e7692141270618d2d6f0feb8d2518a474d3a31b61d04d49a1c21afff11405f636639eaba9c6b91af311d3fcc3e2079a848ee4213f6905d2df4
6
+ metadata.gz: b5ac44d472934dadedc1413210be06d1f3964755e43eee8002d742dd6d5ed8e3a8c27d2db3d4ab0035b77a774fbcdc2a0ffea3a626dd63e77596422ef311f7fb
7
+ data.tar.gz: 79b274838d8d5b00a6bd48c28395b797629b754ef5c35cd753115840e019e709abf3bfe919154cf76c60e9ccce036057ffee97f3f507f539338a74226c0401b6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1001
1
+ 3.0.1002
@@ -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
 
@@ -13277,10 +13285,18 @@ module TencentCloud
13277
13285
  # @type EstateNumber: String
13278
13286
  # @param AreaUnit: 面积单位,仅不动产经营租赁服务发票返回
13279
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
13280
13296
 
13281
- 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
13282
13298
 
13283
- 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)
13284
13300
  @Name = name
13285
13301
  @Quantity = quantity
13286
13302
  @Specification = specification
@@ -13298,6 +13314,10 @@ module TencentCloud
13298
13314
  @BuildingName = buildingname
13299
13315
  @EstateNumber = estatenumber
13300
13316
  @AreaUnit = areaunit
13317
+ @Traveler = traveler
13318
+ @TravelerID = travelerid
13319
+ @TravelDate = traveldate
13320
+ @TravelLevel = travellevel
13301
13321
  end
13302
13322
 
13303
13323
  def deserialize(params)
@@ -13318,6 +13338,10 @@ module TencentCloud
13318
13338
  @BuildingName = params['BuildingName']
13319
13339
  @EstateNumber = params['EstateNumber']
13320
13340
  @AreaUnit = params['AreaUnit']
13341
+ @Traveler = params['Traveler']
13342
+ @TravelerID = params['TravelerID']
13343
+ @TravelDate = params['TravelDate']
13344
+ @TravelLevel = params['TravelLevel']
13321
13345
  end
13322
13346
  end
13323
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.1001
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-19 00:00:00.000000000 Z
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