Class: EveOnline::ESI::Models::Station
- Defined in:
- lib/eve_online/esi/models/station.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #as_json ⇒ Object
- #max_dockable_ship_volume ⇒ Object
- #name ⇒ Object
- #office_rental_cost ⇒ Object
- #owner ⇒ Object
- #position ⇒ Object
- #race_id ⇒ Object
- #reprocessing_efficiency ⇒ Object
- #reprocessing_stations_take ⇒ Object
- #services ⇒ Object
- #station_id ⇒ Object
- #system_id ⇒ Object
- #type_id ⇒ Object
Methods inherited from Base
Constructor Details
This class inherits a constructor from EveOnline::ESI::Models::Base
Instance Method Details
#as_json ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# 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 ⇒ Object
23 24 25 |
# File 'lib/eve_online/esi/models/station.rb', line 23 def max_dockable_ship_volume ["max_dockable_ship_volume"] end |
#name ⇒ Object
27 28 29 |
# File 'lib/eve_online/esi/models/station.rb', line 27 def name ["name"] end |
#office_rental_cost ⇒ Object
31 32 33 |
# File 'lib/eve_online/esi/models/station.rb', line 31 def office_rental_cost ["office_rental_cost"] end |
#owner ⇒ Object
35 36 37 |
# File 'lib/eve_online/esi/models/station.rb', line 35 def owner ["owner"] end |
#position ⇒ Object
67 68 69 |
# File 'lib/eve_online/esi/models/station.rb', line 67 def position @position ||= Position.new(["position"]) end |
#race_id ⇒ Object
39 40 41 |
# File 'lib/eve_online/esi/models/station.rb', line 39 def race_id ["race_id"] end |
#reprocessing_efficiency ⇒ Object
43 44 45 |
# File 'lib/eve_online/esi/models/station.rb', line 43 def reprocessing_efficiency ["reprocessing_efficiency"] end |
#reprocessing_stations_take ⇒ Object
47 48 49 |
# File 'lib/eve_online/esi/models/station.rb', line 47 def reprocessing_stations_take ["reprocessing_stations_take"] end |
#services ⇒ Object
51 52 53 |
# File 'lib/eve_online/esi/models/station.rb', line 51 def services ["services"] end |
#station_id ⇒ Object
55 56 57 |
# File 'lib/eve_online/esi/models/station.rb', line 55 def station_id ["station_id"] end |
#system_id ⇒ Object
59 60 61 |
# File 'lib/eve_online/esi/models/station.rb', line 59 def system_id ["system_id"] end |
#type_id ⇒ Object
63 64 65 |
# File 'lib/eve_online/esi/models/station.rb', line 63 def type_id ["type_id"] end |