Sha256: 3fc4985efe3bdd95757f61175b41c83380f2b742837e89dc288499e7c90cceb8
Contents?: true
Size: 822 Bytes
Versions: 18
Compression:
Stored size: 822 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterBlueprints < Base API_PATH = "/v2/characters/%<character_id>s/blueprints/" attr_reader :character_id, :page def initialize(options) super @character_id = options.fetch(:character_id) @page = options.fetch(:page, 1) end def blueprints @blueprints ||= begin output = [] response.each do |blueprint| output << Models::Blueprint.new(blueprint) end output end end def scope "esi-characters.read_blueprints.v1" end def additional_query_params [:page] end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems