class EveOnline::ESI::MarketPrices

Constants

API_PATH

Public Instance Methods

market_prices() click to toggle source
# File lib/eve_online/esi/market_prices.rb, line 8
def market_prices
  @market_prices ||=
    begin
      output = []
      response.each do |market_price|
        output << Models::MarketPrice.new(market_price)
      end
      output
    end
end
path() click to toggle source
# File lib/eve_online/esi/market_prices.rb, line 22
def path
  API_PATH
end
scope() click to toggle source
# File lib/eve_online/esi/market_prices.rb, line 19
def scope
end