Class: Lightspeed::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/lightspeed/client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access_token:, account_id:, configuration: Lightspeed::Configuration.new) ⇒ Client

Returns a new instance of Client.



26
27
28
29
30
# File 'lib/lightspeed/client.rb', line 26

def initialize(access_token:, account_id:, configuration: Lightspeed::Configuration.new)
  @access_token = access_token
  @account_id = 
  @configuration = configuration
end

Instance Attribute Details

#access_tokenObject (readonly)

Returns the value of attribute access_token.



20
21
22
# File 'lib/lightspeed/client.rb', line 20

def access_token
  @access_token
end

#account_idObject (readonly)

Returns the value of attribute account_id.



20
21
22
# File 'lib/lightspeed/client.rb', line 20

def 
  @account_id
end

Class Method Details

.tokens(client_id:, client_secret:, refresh_token:) ⇒ Object



22
23
24
# File 'lib/lightspeed/client.rb', line 22

def self.tokens(client_id:, client_secret:, refresh_token:)
  API::Tokens.new(client_id, client_secret, refresh_token)
end

Instance Method Details

#accountsObject



56
# File 'lib/lightspeed/client.rb', line 56

def accounts; API::Accounts.new(self); end

#categoriesObject



60
# File 'lib/lightspeed/client.rb', line 60

def categories; API::Categories.new(self); end

#customersObject



58
# File 'lib/lightspeed/client.rb', line 58

def customers; API::Customers.new(self); end

#delete(url) ⇒ Object



44
45
46
47
48
# File 'lib/lightspeed/client.rb', line 44

def delete(url)
  response = conn.delete(url)
  rate_limit_wait(response)
  response
end

#get(url, params: {}, relations: []) ⇒ Object



32
33
34
35
36
# File 'lib/lightspeed/client.rb', line 32

def get(url, params: {}, relations: [])
  response = conn.get(url, params.merge(load_relations: "[#{relation_names(relations)}]"))
  rate_limit_wait(response)
  response
end

#itemsObject



59
# File 'lib/lightspeed/client.rb', line 59

def items; API::Items.new(self); end

#post(url, body: {}) ⇒ Object



38
39
40
41
42
# File 'lib/lightspeed/client.rb', line 38

def post(url, body: {})
  response = conn.post(url, body)
  rate_limit_wait(response)
  response
end

#put(url, body: {}) ⇒ Object



50
51
52
53
54
# File 'lib/lightspeed/client.rb', line 50

def put(url, body: {})
  response = conn.put(url, body)
  rate_limit_wait(response)
  response
end

#salesObject



57
# File 'lib/lightspeed/client.rb', line 57

def sales; API::Sales.new(self); end