class EveOnline::ESI::Models::MarketPrice

Public Instance Methods

adjusted_price() click to toggle source
# File lib/eve_online/esi/models/market_price.rb, line 15
def adjusted_price
  options["adjusted_price"]
end
as_json() click to toggle source
# File lib/eve_online/esi/models/market_price.rb, line 7
def as_json
  {
    adjusted_price: adjusted_price,
    average_price: average_price,
    type_id: type_id
  }
end
average_price() click to toggle source
# File lib/eve_online/esi/models/market_price.rb, line 19
def average_price
  options["average_price"]
end
type_id() click to toggle source
# File lib/eve_online/esi/models/market_price.rb, line 23
def type_id
  options["type_id"]
end