Class: Lightspeed::Client
- Inherits:
-
Object
- Object
- Lightspeed::Client
- Defined in:
- lib/lightspeed/client.rb
Constant Summary collapse
- API_BASE =
"https://api.merchantos.com/API/"
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:) ⇒ 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:) ⇒ Client
Returns a new instance of Client.
27 28 29 30 31 |
# File 'lib/lightspeed/client.rb', line 27 def initialize(access_token:, account_id:, configuration:) @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.
21 22 23 |
# File 'lib/lightspeed/client.rb', line 21 def access_token @access_token end |
#account_id ⇒ Object (readonly)
Returns the value of attribute account_id.
21 22 23 |
# File 'lib/lightspeed/client.rb', line 21 def account_id @account_id end |
Class Method Details
Instance Method Details
#accounts ⇒ Object
57 |
# File 'lib/lightspeed/client.rb', line 57 def accounts; API::Accounts.new(self); end |
#categories ⇒ Object
61 |
# File 'lib/lightspeed/client.rb', line 61 def categories; API::Categories.new(self); end |
#customers ⇒ Object
59 |
# File 'lib/lightspeed/client.rb', line 59 def customers; API::Customers.new(self); end |
#delete(url) ⇒ Object
45 46 47 48 49 |
# File 'lib/lightspeed/client.rb', line 45 def delete(url) response = conn.delete(url) rate_limit_wait(response) response end |
#get(url, params: {}, relations: []) ⇒ Object
33 34 35 36 37 |
# File 'lib/lightspeed/client.rb', line 33 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
39 40 41 42 43 |
# File 'lib/lightspeed/client.rb', line 39 def post(url, body: {}) response = conn.post(url, body) rate_limit_wait(response) response end |
#put(url, body: {}) ⇒ Object
51 52 53 54 55 |
# File 'lib/lightspeed/client.rb', line 51 def put(url, body: {}) response = conn.put(url, body) rate_limit_wait(response) response end |