Class: Google::Apis::TravelimpactmodelV1::EmissionsGramsPerPax

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/travelimpactmodel_v1/classes.rb,
lib/google/apis/travelimpactmodel_v1/representations.rb,
lib/google/apis/travelimpactmodel_v1/representations.rb

Overview

Grouped emissions per seating class results.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EmissionsGramsPerPax

Returns a new instance of EmissionsGramsPerPax.



143
144
145
# File 'lib/google/apis/travelimpactmodel_v1/classes.rb', line 143

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#businessFixnum

Emissions for one passenger in business class in grams. This field is always computed and populated, regardless of whether the aircraft has business class seats or not. Corresponds to the JSON property business

Returns:

  • (Fixnum)


120
121
122
# File 'lib/google/apis/travelimpactmodel_v1/classes.rb', line 120

def business
  @business
end

#economyFixnum

Emissions for one passenger in economy class in grams. This field is always computed and populated, regardless of whether the aircraft has economy class seats or not. Corresponds to the JSON property economy

Returns:

  • (Fixnum)


127
128
129
# File 'lib/google/apis/travelimpactmodel_v1/classes.rb', line 127

def economy
  @economy
end

#firstFixnum

Emissions for one passenger in first class in grams. This field is always computed and populated, regardless of whether the aircraft has first class seats or not. Corresponds to the JSON property first

Returns:

  • (Fixnum)


134
135
136
# File 'lib/google/apis/travelimpactmodel_v1/classes.rb', line 134

def first
  @first
end

#premium_economyFixnum

Emissions for one passenger in premium economy class in grams. This field is always computed and populated, regardless of whether the aircraft has premium economy class seats or not. Corresponds to the JSON property premiumEconomy

Returns:

  • (Fixnum)


141
142
143
# File 'lib/google/apis/travelimpactmodel_v1/classes.rb', line 141

def premium_economy
  @premium_economy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



148
149
150
151
152
153
# File 'lib/google/apis/travelimpactmodel_v1/classes.rb', line 148

def update!(**args)
  @business = args[:business] if args.key?(:business)
  @economy = args[:economy] if args.key?(:economy)
  @first = args[:first] if args.key?(:first)
  @premium_economy = args[:premium_economy] if args.key?(:premium_economy)
end