module Uber::API::PriceEstimates

Public Instance Methods

price_estimations(*args) click to toggle source
# File lib/uber/api/price_estimates.rb, line 9
def price_estimations(*args)
  arguments = Uber::Arguments.new(args)
  perform_with_objects(
    :get,
    "/v1/estimates/price",
    arguments.options,
    Price
  )
end