Class: Greeve::Character::WalletJournal
- Defined in:
- lib/greeve/character/wallet_journal.rb
Overview
Note:
Character wallet journal.
Attributes collapse
Instance Method Summary collapse
-
#initialize(character_id, opts = {}) ⇒ WalletJournal
constructor
A new instance of WalletJournal.
Methods inherited from BaseItem
attribute, #cache_expired?, #cached_until, endpoint, #inspect, namespace, #refresh, rowset, #to_s
Methods included from Helpers::AttributeToHash
Constructor Details
#initialize(character_id, opts = {}) ⇒ WalletJournal
Returns a new instance of WalletJournal
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 |
Instance Method Details
#transactions ⇒ Greeve::Rowset
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/greeve/character/wallet_journal.rb', line 11 rowset :transactions, xpath: "eveapi/result/rowset[@name='transactions']" do attribute :date, xpath: "@date", type: :datetime attribute :ref_id, xpath: "@refID", type: :integer attribute :ref_type_id, xpath: "@refTypeID", type: :integer attribute :owner_name_1, xpath: "@ownerName1", type: :string attribute :owner_id_1, xpath: "@ownerID1", type: :integer attribute :owner_name_2, xpath: "@ownerName2", type: :string attribute :owner_id_2, xpath: "@ownerID2", type: :integer attribute :arg_name_1, xpath: "@argName1", type: :string attribute :arg_id_1, xpath: "@argID1", type: :integer attribute :amount, xpath: "@amount", type: :numeric attribute :balance, xpath: "@balance", type: :numeric attribute :reason, xpath: "@reason", type: :string attribute :tax_receiver_id, xpath: "@taxReceiverID", type: :integer attribute :tax_amount, xpath: "@taxAmount", type: :numeric attribute :owner_1_type_id, xpath: "@owner1TypeID", type: :integer attribute :owner_2_type_id, xpath: "@owner2TypeID", type: :integer end |