Class: Reuters::Client::Fundamentals

Inherits:
Base
  • Object
show all
Defined in:
lib/reuters/client/fundamentals.rb

Overview

Performs a Fundamentals Reuters API request. Fundamentals can be used to retrieve snapshot information about a specific company ID and Ticker.

Examples:

Making a fundamentals request

req = Reuters::Client::Fundamentals.new
msg = Reuters::Builder.new
puts req.operations #=> [:get_snapshot_reports_1, ...]
response = req.get_snapshot_reports_1(msg, {
  'companyId' => id,
  'companyIdType' => type,
  'countryCode' => code,
  'includeMedians' => medians
})

Method Summary

Methods inherited from Base

#after_request, #before_request, #client, #initialize, #method_missing, #request

Constructor Details

This class inherits a constructor from Reuters::Client::Base

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Reuters::Client::Base