Class: Paychex::API

Inherits:
Object
  • Object
show all
Includes:
Connection, Request
Defined in:
lib/paychex/api.rb

Direct Known Subclasses

Client

Instance Method Summary collapse

Methods included from Request

#auth, #delete, #get, #post, #put

Constructor Details

#initialize(options = {}) ⇒ API

Creates a new API



13
14
15
16
17
18
# File 'lib/paychex/api.rb', line 13

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

Instance Method Details

#configObject



20
21
22
23
24
25
26
# File 'lib/paychex/api.rb', line 20

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