class FinApps::REST::PortfolioReports

Public Instance Methods

list(params = nil) click to toggle source
Calls superclass method
   # File lib/finapps/rest/portfolio_reports.rb
 8 def list(params = nil)
 9   path = 'portfolio/reports'
10 
11   return super path if params.nil?
12   fail FinAppsCore::InvalidArgumentsError, 'Invalid argument: params' unless params.is_a? Hash
13 
14   super build_query_path(path, params)
15 end