Class: Greeve::Character::WalletJournal

Inherits:
BaseItem
  • Object
show all
Defined in:
lib/greeve/character/wallet_journal.rb

Overview

Character wallet journal.

Instance Method Summary collapse

Methods inherited from BaseItem

attribute, #cache_expired?, #cached_until, endpoint, #inspect, namespace, #refresh, rowset, #to_s

Methods included from Helpers::AttributeToHash

#to_h

Constructor Details

#initialize(character_id, opts = {}) ⇒ WalletJournal

Returns a new instance of WalletJournal.

Parameters:

  • character_id (Integer)

    EVE character ID

  • opts (Hash) (defaults to: {})

    a customizable set of options

Options Hash (opts):

  • :from_id (Integer)

    Optional upper bound for the ref ID of returned journal entries. This argument is normally used to walk to the journal backwards.

  • :row_count (Integer)

    Optional limit on number of rows to return. Default is 1000. Maximum is 2560.



37
38
39
40
41
42
43
44
45
46
# File 'lib/greeve/character/wallet_journal.rb', line 37

def initialize(character_id, opts = {})
  from_id = opts.delete(:from_id)
  row_count = opts.delete(:row_count)

  opts[:query_params] = { "characterID" => character_id }
  opts[:query_params]["fromID"] = from_id if from_id
  opts[:query_params]["rowCount"] = row_count if row_count

  super(opts)
end