Repository URL to install this package:
|
Version:
0.1.0 ▾
|
module FieldEdgeApi
class Client
module Customers
def customers(params={})
get('customers', params)
end
def customer(id, params={})
get("customers/#{id}", params)
end
end
end
end