Sha256: 3db5a3effd29c75d60b2222755fac5330bd4ad1c83a226a214aad5c4fbd4fbf3
Contents?: true
Size: 653 Bytes
Versions: 2
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Planet < Base def as_json { name: name, planet_id: planet_id, system_id: system_id, type_id: type_id, } end def name options["name"] end def planet_id options["planet_id"] end def system_id options["system_id"] end def type_id options["type_id"] end def position @position ||= Position.new(options["position"]) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.31.0 | lib/eve_online/esi/models/planet.rb |
eve_online-0.30.0 | lib/eve_online/esi/models/planet.rb |