Module: Reuters::Wsdls

Defined in:
lib/reuters/wsdls.rb,
lib/reuters/wsdls/base.rb,
lib/reuters/wsdls/token.rb,
lib/reuters/wsdls/search.rb,
lib/reuters/wsdls/search/all.rb,
lib/reuters/wsdls/fundamentals.rb,
lib/reuters/wsdls/search/equity.rb

Overview

The Wsdls module contains sets of endpoints that are used by Reuters in their internal API. Wsdls describe valid operations that can be carried out through API requests. Each API group should have an accompanying WSDL, as they are used to make Client requests.

Defined Under Namespace

Modules: Base, Fundamentals, Search, Token

Class Method Summary collapse

Class Method Details

.configure(wsdl, &block) ⇒ Object

Note:

The passed in wsdl is converted to a string and capitalized. It should be in the correct form.

Configure a Wsdls stored configurations.

Parameters:

  • wsdl (Symbol)

    to configure endpoints for.



20
21
22
# File 'lib/reuters/wsdls.rb', line 20

def self.configure(wsdl, &block)
  const_get(wsdl.to_s).configure(&block)
end