module Uber::API::TimeEstimates

Public Instance Methods

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