Class: Lightspeed::Client
- Inherits:
-
Object
- Object
- Lightspeed::Client
- Defined in:
- lib/lightspeed/client.rb
Instance Attribute Summary collapse
-
#access_token ⇒ Object
readonly
Returns the value of attribute access_token.
-
#account_id ⇒ Object
readonly
Returns the value of attribute account_id.
Class Method Summary collapse
Instance Method Summary collapse
- #accounts ⇒ Object
- #categories ⇒ Object
- #customers ⇒ Object
- #delete(url) ⇒ Object
- #get(url, params: {}, relations: []) ⇒ Object
-
#initialize(access_token:, account_id:, configuration: Lightspeed::Configuration.new) ⇒ Client
constructor
A new instance of Client.
- #items ⇒ Object
- #post(url, body: {}) ⇒ Object
- #put(url, body: {}) ⇒ Object
- #sales ⇒ Object
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 = account_id @configuration = configuration end |
Instance Attribute Details
#access_token ⇒ Object (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_id ⇒ Object (readonly)
Returns the value of attribute account_id.
20 21 22 |
# File 'lib/lightspeed/client.rb', line 20 def account_id @account_id end |
Class Method Details
Instance Method Details
#accounts ⇒ Object
56 |
# File 'lib/lightspeed/client.rb', line 56 def accounts; API::Accounts.new(self); end |
#categories ⇒ Object
60 |
# File 'lib/lightspeed/client.rb', line 60 def categories; API::Categories.new(self); end |
#customers ⇒ Object
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 |
#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 |