class EveOnline::ESI::DogmaEffect

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/dogma_effect.rb, line 14
def initialize(options)
  super

  @id = options.fetch(:id)
end

Public Instance Methods

model() click to toggle source
# File lib/eve_online/esi/dogma_effect.rb, line 28
def model
  @model ||= Models::DogmaEffect.new(response)
end
path() click to toggle source
# File lib/eve_online/esi/dogma_effect.rb, line 35
def path
  format(API_PATH, effect_id: id)
end
scope() click to toggle source
# File lib/eve_online/esi/dogma_effect.rb, line 32
def scope
end