Class: Invoice2go::API

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

Direct Known Subclasses

Client

Instance Attribute Summary

Attributes included from Response

#meta, #pagination

Instance Method Summary collapse

Methods included from Response

create

Methods included from Request

#get, #post, #refresh_token!

Constructor Details

#initialize(options = {}) ⇒ API

Returns a new instance of API.



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

def initialize(options={})
  options = Invoice2go.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/invoice2go/api.rb', line 17

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