Sha256: 6ce31572552f569b748f4da1f96ed148b9c0819036f8087a8947298fcf17ffd0
Contents?: true
Size: 713 Bytes
Versions: 2
Compression:
Stored size: 713 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterStandings < Base API_PATH = '/v1/characters/%<character_id>s/standings/' attr_reader :character_id def initialize(options) super @character_id = options.fetch(:character_id) end def standings @standings ||= begin output = [] response.each do |standing| output << Models::Standing.new(standing) end output end end def scope 'esi-characters.read_standings.v1' end def path format("#{ API_PATH }", character_id: character_id) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.29.0 | lib/eve_online/esi/character_standings.rb |
eve_online-0.28.0 | lib/eve_online/esi/character_standings.rb |