Sha256: 511af1b274a2e1de1bd745406caa44f5595479c074d6e7452635d21625c1c724

Contents?: true

Size: 786 Bytes

Versions: 2

Compression:

Stored size: 786 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 additional_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.31.0 lib/eve_online/esi/character_assets.rb
eve_online-0.30.0 lib/eve_online/esi/character_assets.rb