class EveOnline::ESI::UniverseSystemKills

Constants

API_PATH

Public Instance Methods

path() click to toggle source
# File lib/eve_online/esi/universe_system_kills.rb, line 22
def path
  API_PATH
end
scope() click to toggle source
# File lib/eve_online/esi/universe_system_kills.rb, line 19
def scope
end
system_kills() click to toggle source
# File lib/eve_online/esi/universe_system_kills.rb, line 8
def system_kills
  @system_kills ||=
    begin
      output = []
      response.each do |system_kill|
        output << Models::SystemKill.new(system_kill)
      end
      output
    end
end