class RSqoot::Client

Attributes

authentication_method[R]
base_api_url[R]
private_api_key[R]
public_api_key[R]
read_timeout[R]

Public Class Methods

new(options={}) click to toggle source
# File lib/rsqoot/client.rb, line 21
def initialize(options={})
  @public_api_key        = options[:public_api_key] || RSqoot.public_api_key
  @private_api_key       = options[:private_api_key] || RSqoot.private_api_key
  @base_api_url          = options[:base_api_url] || RSqoot.base_api_url
  @authentication_method = options[:authentication_method] || RSqoot.authentication_method
  @read_timeout          = options[:read_timeout] || RSqoot.read_timeout
end