class MangoPay::Wallet

See docs.mangopay.com/api-references/wallets/

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:

# File lib/mangopay/wallet.rb, line 13
def self.transactions(wallet_id, filters = {}, headers = nil)
  Transaction.fetch(wallet_id, filters, headers)
end