Sha256: f7811cf1abe4a5db38058ebfec35711f082b26db85312d10260e7563d539729d
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
module MangoPay class Transaction < Resource class << self # Fetches list of transactions belonging to the given +wallet_id+. # See also transactions for user: MangoPay::User#transactions # # Optional +filters+ is a hash accepting following keys: # - +page+, +per_page+, +sort+: pagination and sorting params (see MangoPay::HTTPCalls::Fetch::ClassMethods#fetch) # - +Status+: TransactionStatus {CREATED, SUCCEEDED, FAILED} # - +Type+: TransactionType {PAYIN, PAYOUT, TRANSFER} # - +Nature+: TransactionNature {NORMAL, REFUND, REPUDIATION} # - +BeforeDate+ (timestamp): filters transactions with CreationDate _before_ this date # - +AfterDate+ (timestamp): filters transactions with CreationDate _after_ this date def fetch(wallet_id, filters={}) MangoPay.request(:get, url(wallet_id), {}, filters) end def url(wallet_id) "#{MangoPay.api_path}/wallets/#{CGI.escape(wallet_id.to_s)}/transactions" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mangopay-3.0.21 | lib/mangopay/transaction.rb |
mangopay-3.0.20 | lib/mangopay/transaction.rb |