Sha256: de2ef47ba11e46397f8ea22a42a98b4f81cf8e8c47b8e33b644eea3bb527c233
Contents?: true
Size: 823 Bytes
Versions: 16
Compression:
Stored size: 823 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class CharacterContracts < Base API_PATH = "/v1/characters/%<character_id>s/contracts/" attr_reader :character_id, :page def initialize(options) super @character_id = options.fetch(:character_id) @page = options.fetch(:page, 1) end def contracts @contracts ||= begin output = [] response.each do |contract| output << Models::Contract.new(contract) end output end end def scope "esi-contracts.read_character_contracts.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