Class: EveOnline::ESI::MarketPrices
- Inherits:
-
Base
- Object
- Base
- EveOnline::ESI::MarketPrices
- Defined in:
- lib/eve_online/esi/market_prices.rb
Constant Summary collapse
- API_PATH =
"/v1/markets/prices/"
Instance Method Summary collapse
Instance Method Details
#market_prices ⇒ Object
8 9 10 11 12 13 14 15 16 17 |
# 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 |
#scope ⇒ Object
19 20 |
# File 'lib/eve_online/esi/market_prices.rb', line 19 def scope end |