class EveOnline::ESI::UniverseCategory

Constants

API_PATH

Attributes

id[R]

Public Class Methods

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

  @id = options.fetch(:id)
end

Public Instance Methods

additional_query_params() click to toggle source
# File lib/eve_online/esi/universe_category.rb, line 30
def additional_query_params
  [:language]
end
model() click to toggle source
# File lib/eve_online/esi/universe_category.rb, line 23
def model
  @model ||= Models::Category.new(response)
end
path() click to toggle source
# File lib/eve_online/esi/universe_category.rb, line 34
def path
  format(API_PATH, category_id: id)
end
scope() click to toggle source
# File lib/eve_online/esi/universe_category.rb, line 27
def scope
end