class EveOnline::ESI::Killmail

Constants

API_PATH

Attributes

killmail_hash[R]
killmail_id[R]

Public Class Methods

new(options) click to toggle source
Calls superclass method EveOnline::ESI::Base::new
# File lib/eve_online/esi/killmail.rb, line 10
def initialize(options)
  super

  @killmail_id = options.fetch(:killmail_id)
  @killmail_hash = options.fetch(:killmail_hash)
end

Public Instance Methods

as_json() click to toggle source

TODO: implement

# File lib/eve_online/esi/killmail.rb, line 18
def as_json
  {}
end
path() click to toggle source
# File lib/eve_online/esi/killmail.rb, line 25
def path
  format(API_PATH, killmail_id: killmail_id, killmail_hash: killmail_hash)
end
scope() click to toggle source
# File lib/eve_online/esi/killmail.rb, line 22
def scope
end