class EveOnline::ESI::Models::PlanetShort

Public Instance Methods

as_json() click to toggle source
# File lib/eve_online/esi/models/planet_short.rb, line 7
def as_json
  {
    planet_id: planet_id
  }
end
asteroid_belt_ids() click to toggle source
# File lib/eve_online/esi/models/planet_short.rb, line 17
def asteroid_belt_ids
  options.fetch("asteroid_belts", [])
end
moon_ids() click to toggle source
# File lib/eve_online/esi/models/planet_short.rb, line 21
def moon_ids
  options.fetch("moons", [])
end
planet_id() click to toggle source
# File lib/eve_online/esi/models/planet_short.rb, line 13
def planet_id
  options["planet_id"]
end