Method: Forecasting::Client#clients
- Defined in:
- lib/forecasting/client.rb
#clients(opts = {}) ⇒ Array<Forecasting::Models::Client>
41 42 43 44 45 |
# File 'lib/forecasting/client.rb', line 41 def clients(opts = {}) get("clients", opts)["clients"].map do |entry| Forecasting::Models::Client.new(entry, forecast_client: self) end end |