module Intrinio

#Intrinio API

#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](intrinio.com) and click on the chat icon in the lower right corner.

OpenAPI spec version: 2.25.6

Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: unset

#Intrinio API

#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](intrinio.com) and click on the chat icon in the lower right corner.

OpenAPI spec version: 2.25.6

Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: unset

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

Intrinio.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/intrinio-sdk.rb, line 287
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end