Sha256: 6fe58dab5925be955e50705c8812ff56d0258c8d072bfba2239cee8de6a07a57
Contents?: true
Size: 786 Bytes
Versions: 16
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterAssets < Base API_PATH = "/v5/characters/%<character_id>s/assets/" attr_reader :character_id, :page def initialize(options) super @character_id = options.fetch(:character_id) @page = options.fetch(:page, 1) end def assets @assets ||= begin output = [] response.each do |asset| output << Models::Asset.new(asset) end output end end def scope "esi-assets.read_assets.v1" end def additional_query_params [:page] end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems