Sha256: c9d3b57b4a2aae942f82c739891e0006716420a5560d215fd532618a5e932c7a
Contents?: true
Size: 706 Bytes
Versions: 18
Compression:
Stored size: 706 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
18 entries across 18 versions & 1 rubygems