module Gitlab::Client::Issues
def estimate_time_of_issue(project, id, duration)
-
duration
(String
) -- The duration in human format. e.g: 3h30m -
id
(Integer
) -- The ID of an issue. -
project
(Integer, String
) -- The ID or name of a project.
def estimate_time_of_issue(project, id, duration) post("/projects/#{url_encode project}/issues/#{id}/time_estimate", body: { duration: url_encode(duration) }) end