Class: LendingClub::API

Inherits:
Object
  • Object
show all
Includes:
Request
Defined in:
lib/lending_club/api.rb

Direct Known Subclasses

Client

Instance Method Summary collapse

Methods included from Request

#get, #post

Constructor Details

#initialize(options = {}) ⇒ API

Creates a new API



10
11
12
13
14
15
# File 'lib/lending_club/api.rb', line 10

def initialize(options={})
  options = LendingClub.options.merge(options)
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end

Instance Method Details

#configObject



17
18
19
20
21
22
23
# File 'lib/lending_club/api.rb', line 17

def config
  conf = {}
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    conf[key] = send key
  end
  conf
end