Sha256: fbb885224ff3654b851dd25d63cd869ca1a0ea1f52df6d4dc1786c1eb170dfc6
Contents?: true
Size: 793 Bytes
Versions: 2
Compression:
Stored size: 793 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterAssets < Base API_PATH = '/v3/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 additation_query_params [:page] 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_assets.rb |
eve_online-0.28.0 | lib/eve_online/esi/character_assets.rb |