class EveOnline::ESI::Models::CharacterLocation

Public Instance Methods

as_json() click to toggle source
# File lib/eve_online/esi/models/character_location.rb, line 7
def as_json
  {
    solar_system_id: solar_system_id,
    station_id: station_id,
    structure_id: structure_id
  }
end
solar_system_id() click to toggle source
# File lib/eve_online/esi/models/character_location.rb, line 15
def solar_system_id
  options["solar_system_id"]
end
station_id() click to toggle source
# File lib/eve_online/esi/models/character_location.rb, line 19
def station_id
  options["station_id"]
end
structure_id() click to toggle source
# File lib/eve_online/esi/models/character_location.rb, line 23
def structure_id
  options["structure_id"]
end