module ZohoHub::WithConnection::ClassMethods

Public Instance Methods

delete(path, params = {}) click to toggle source
# File lib/zoho_hub/with_connection.rb, line 23
def delete(path, params = {})
  ZohoHub.connection.delete(path, params)
end
get(path, params = {}) click to toggle source
# File lib/zoho_hub/with_connection.rb, line 11
def get(path, params = {})
  ZohoHub.connection.get(path, params)
end
post(path, params = {}) click to toggle source
# File lib/zoho_hub/with_connection.rb, line 15
def post(path, params = {})
  ZohoHub.connection.post(path, params)
end
put(path, params = {}) click to toggle source
# File lib/zoho_hub/with_connection.rb, line 19
def put(path, params = {})
  ZohoHub.connection.put(path, params)
end