class MangoPay::Wallet
Public Class Methods
transactions(wallet_id, filters = {}, headers = nil)
click to toggle source
Fetches list of transactions belonging to the given wallet_id
. Optional filters
is a hash accepting following keys:
-
page
,per_page
,sort
: pagination and sorting params (seeMangoPay::HTTPCalls::Fetch::ClassMethods#fetch
) -
other keys specific for transactions filtering (see
MangoPay::Transaction.fetch
)
# File lib/mangopay/wallet.rb, line 13 def self.transactions(wallet_id, filters = {}, headers = nil) Transaction.fetch(wallet_id, filters, headers) end