Method: Forecasting::Client#people

Defined in:
lib/forecasting/client.rb

#people(opts = {}) ⇒ Array<Forecasting::Models::Person>

Returns:



78
79
80
81
82
# File 'lib/forecasting/client.rb', line 78

def people(opts = {})
  get("people", opts)["people"].map do |entry|
    Forecasting::Models::Person.new(entry, forecast_client: self)
  end
end