class EveOnline::ESI::Models::Station
Public Instance Methods
as_json()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 7 def as_json { max_dockable_ship_volume: max_dockable_ship_volume, name: name, office_rental_cost: office_rental_cost, owner: owner, race_id: race_id, reprocessing_efficiency: reprocessing_efficiency, reprocessing_stations_take: reprocessing_stations_take, services: services, station_id: station_id, system_id: system_id, type_id: type_id } end
max_dockable_ship_volume()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 23 def max_dockable_ship_volume options["max_dockable_ship_volume"] end
name()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 27 def name options["name"] end
office_rental_cost()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 31 def office_rental_cost options["office_rental_cost"] end
owner()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 35 def owner options["owner"] end
position()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 67 def position @position ||= Position.new(options["position"]) end
race_id()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 39 def race_id options["race_id"] end
reprocessing_efficiency()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 43 def reprocessing_efficiency options["reprocessing_efficiency"] end
reprocessing_stations_take()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 47 def reprocessing_stations_take options["reprocessing_stations_take"] end
services()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 51 def services options["services"] end
station_id()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 55 def station_id options["station_id"] end
system_id()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 59 def system_id options["system_id"] end
type_id()
click to toggle source
# File lib/eve_online/esi/models/station.rb, line 63 def type_id options["type_id"] end