google-apis-travelimpactmodel_v1 0.15.0 → 0.16.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1e5426957b0fa9fea352779102d382d70e088229a589c444981c1063339cfbf
|
|
4
|
+
data.tar.gz: 6d1acf07d84c88fc6f46069d660deacc9893ff0c2fcccbca8a85e993bef8aefc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3320850a536a4f6486f86aee7aa4c7a705ef86677be6f710e45d4e51e6b5ef9a8fe5d6fe3c9143cb5cd309ced5fb145d06d8b69bd389d20acd17d74f176e43a6
|
|
7
|
+
data.tar.gz: 94977bc70d61e8ad0076d303bb612a8a9e58b69074e5cbfb84ece9a3f2a7db120b1af9a60f7d72121065567b0c2ec0a7ddbcba043282efafcad5e138080d12a9
|
data/CHANGELOG.md
CHANGED
|
@@ -490,13 +490,6 @@ module Google
|
|
|
490
490
|
# @return [String]
|
|
491
491
|
attr_accessor :provenance_entry_type
|
|
492
492
|
|
|
493
|
-
# Seat area ratio data values. Economy is always 1.0 and serves as the reference
|
|
494
|
-
# point; other class values are relative to economy. All 4 fields are always set
|
|
495
|
-
# whether the seating class exists on the aircraft or not.
|
|
496
|
-
# Corresponds to the JSON property `seatAreaRatioData`
|
|
497
|
-
# @return [Google::Apis::TravelimpactmodelV1::SeatAreaRatioData]
|
|
498
|
-
attr_accessor :seat_area_ratio_data
|
|
499
|
-
|
|
500
493
|
# Output only. Strategy for IATA seat area ratios.
|
|
501
494
|
# Corresponds to the JSON property `seatAreaRatioIataStrategy`
|
|
502
495
|
# @return [String]
|
|
@@ -528,7 +521,6 @@ module Google
|
|
|
528
521
|
@load_factors_data = args[:load_factors_data] if args.key?(:load_factors_data)
|
|
529
522
|
@load_factors_t100_strategy = args[:load_factors_t100_strategy] if args.key?(:load_factors_t100_strategy)
|
|
530
523
|
@provenance_entry_type = args[:provenance_entry_type] if args.key?(:provenance_entry_type)
|
|
531
|
-
@seat_area_ratio_data = args[:seat_area_ratio_data] if args.key?(:seat_area_ratio_data)
|
|
532
524
|
@seat_area_ratio_iata_strategy = args[:seat_area_ratio_iata_strategy] if args.key?(:seat_area_ratio_iata_strategy)
|
|
533
525
|
@source = args[:source] if args.key?(:source)
|
|
534
526
|
@source_version = args[:source_version] if args.key?(:source_version)
|
|
@@ -905,45 +897,6 @@ module Google
|
|
|
905
897
|
end
|
|
906
898
|
end
|
|
907
899
|
|
|
908
|
-
# Seat area ratio data values. Economy is always 1.0 and serves as the reference
|
|
909
|
-
# point; other class values are relative to economy. All 4 fields are always set
|
|
910
|
-
# whether the seating class exists on the aircraft or not.
|
|
911
|
-
class SeatAreaRatioData
|
|
912
|
-
include Google::Apis::Core::Hashable
|
|
913
|
-
|
|
914
|
-
# Output only. Business seating class data value.
|
|
915
|
-
# Corresponds to the JSON property `business`
|
|
916
|
-
# @return [Float]
|
|
917
|
-
attr_accessor :business
|
|
918
|
-
|
|
919
|
-
# Output only. Economy seating class data value.
|
|
920
|
-
# Corresponds to the JSON property `economy`
|
|
921
|
-
# @return [Float]
|
|
922
|
-
attr_accessor :economy
|
|
923
|
-
|
|
924
|
-
# Output only. First seating class data value.
|
|
925
|
-
# Corresponds to the JSON property `first`
|
|
926
|
-
# @return [Float]
|
|
927
|
-
attr_accessor :first
|
|
928
|
-
|
|
929
|
-
# Output only. Premium economy seating class data value.
|
|
930
|
-
# Corresponds to the JSON property `premiumEconomy`
|
|
931
|
-
# @return [Float]
|
|
932
|
-
attr_accessor :premium_economy
|
|
933
|
-
|
|
934
|
-
def initialize(**args)
|
|
935
|
-
update!(**args)
|
|
936
|
-
end
|
|
937
|
-
|
|
938
|
-
# Update properties of this object
|
|
939
|
-
def update!(**args)
|
|
940
|
-
@business = args[:business] if args.key?(:business)
|
|
941
|
-
@economy = args[:economy] if args.key?(:economy)
|
|
942
|
-
@first = args[:first] if args.key?(:first)
|
|
943
|
-
@premium_economy = args[:premium_economy] if args.key?(:premium_economy)
|
|
944
|
-
end
|
|
945
|
-
end
|
|
946
|
-
|
|
947
900
|
# Typical flight emission estimates for a certain market
|
|
948
901
|
class TypicalFlightEmissions
|
|
949
902
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module TravelimpactmodelV1
|
|
18
18
|
# Version of the google-apis-travelimpactmodel_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.16.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260624"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -160,12 +160,6 @@ module Google
|
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
|
161
161
|
end
|
|
162
162
|
|
|
163
|
-
class SeatAreaRatioData
|
|
164
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
|
-
|
|
166
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
167
|
-
end
|
|
168
|
-
|
|
169
163
|
class TypicalFlightEmissions
|
|
170
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
165
|
|
|
@@ -319,8 +313,6 @@ module Google
|
|
|
319
313
|
property :load_factors_data, as: 'loadFactorsData'
|
|
320
314
|
property :load_factors_t100_strategy, as: 'loadFactorsT100Strategy'
|
|
321
315
|
property :provenance_entry_type, as: 'provenanceEntryType'
|
|
322
|
-
property :seat_area_ratio_data, as: 'seatAreaRatioData', class: Google::Apis::TravelimpactmodelV1::SeatAreaRatioData, decorator: Google::Apis::TravelimpactmodelV1::SeatAreaRatioData::Representation
|
|
323
|
-
|
|
324
316
|
property :seat_area_ratio_iata_strategy, as: 'seatAreaRatioIataStrategy'
|
|
325
317
|
property :source, as: 'source'
|
|
326
318
|
property :source_version, as: 'sourceVersion'
|
|
@@ -421,16 +413,6 @@ module Google
|
|
|
421
413
|
end
|
|
422
414
|
end
|
|
423
415
|
|
|
424
|
-
class SeatAreaRatioData
|
|
425
|
-
# @private
|
|
426
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
427
|
-
property :business, as: 'business'
|
|
428
|
-
property :economy, as: 'economy'
|
|
429
|
-
property :first, as: 'first'
|
|
430
|
-
property :premium_economy, as: 'premiumEconomy'
|
|
431
|
-
end
|
|
432
|
-
end
|
|
433
|
-
|
|
434
416
|
class TypicalFlightEmissions
|
|
435
417
|
# @private
|
|
436
418
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-travelimpactmodel_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-travelimpactmodel_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-travelimpactmodel_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-travelimpactmodel_v1/v0.16.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-travelimpactmodel_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|