Repository URL to install this package:
|
Version:
0.0.1 ▾
|
module AppointmentPlus
class Client
module Locations
def locations(params = {}, response_type = 'json')
params[:response_type] = "#{response_type}"
query_string = generate_query_string(params)
response = post("Locations/GetLocations#{query_string}", params)
end
end
end
end