class Greeve::Corporation::WalletTransactions

Corporation wallet transactions.

@see eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/corporation/corp_wallettransactions.html

Public Class Methods

new(opts = {}) click to toggle source

@option opts [Integer] :account_key account key of the wallet for which

transactions will be returned (1000 - 1006)

@option opts [Integer] :from_id upper bound for the ref_id of returned

transactions. Normally used to walk the transaction log backwards

@option opts [Integer] :row_count limit on the number of rows to return.

Default is 1000, max is 2560
Calls superclass method Greeve::BaseItem::new
# File lib/greeve/corporation/wallet_transactions.rb, line 36
def initialize(opts = {})
  account_key = opts[:account_key]
  from_id = opts[:from_id]
  row_count = opts[:row_count]

  opts[:query_params] = {}
  opts[:query_params]["accountKey"] = account_key if account_key
  opts[:query_params]["fromID"] = from_id if from_id
  opts[:query_params]["rowCount"] = row_count if row_count

  super(opts)
end