Sha256: 12f61a4a822cec4e423bfa50b1e2fae03b253d7689d33b7e1a8682dbcd7ffae7
Contents?: true
Size: 298 Bytes
Versions: 8
Compression:
Stored size: 298 Bytes
Contents
module RockRMS class Client module Fund def list_funds(options = {}) res = get(fund_path, options) RockRMS::Fund.format(res) end private def fund_path(id = nil) id ? "FinancialAccounts/#{id}" : 'FinancialAccounts' end end end end
Version data entries
8 entries across 8 versions & 1 rubygems