Sha256: cfea60fab8a14825c733c9298b02f5e261dab766fde1c3e3fe9cdd7a24ab6e27
Contents?: true
Size: 453 Bytes
Versions: 16
Compression:
Stored size: 453 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class PlanetShort < Base def as_json { planet_id: planet_id } end def planet_id options["planet_id"] end def asteroid_belt_ids options.fetch("asteroid_belts", []) end def moon_ids options.fetch("moons", []) end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems