class EveOnline::ESI::CharacterStandings

Constants

API_PATH

Attributes

character_id[R]

Public Class Methods

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

  @character_id = options.fetch(:character_id)
end

Public Instance Methods

path() click to toggle source
# File lib/eve_online/esi/character_standings.rb, line 31
def path
  format(API_PATH, character_id: character_id)
end
scope() click to toggle source
# File lib/eve_online/esi/character_standings.rb, line 27
def scope
  "esi-characters.read_standings.v1"
end
standings() click to toggle source
# File lib/eve_online/esi/character_standings.rb, line 16
def standings
  @standings ||=
    begin
      output = []
      response.each do |standing|
        output << Models::Standing.new(standing)
      end
      output
    end
end