module Gitlab::Client::MergeRequests
def update_merge_request_discussion_note(project, merge_request_id, discussion_id, note_id, options)
-
(Gitlab::ObjectifiedHash)
- The merge request discussion note.
Options Hash:
(**options)
-
:resolved
(Boolean
) -- Resolve/unresolve the note. -
:body
(String
) -- The content of a discussion.
Parameters:
-
options
(Hash
) -- A customizable set of options. -
note_id
(Integer
) -- The ID of a discussion note. -
discussion_id
(Integer
) -- The ID of a discussion. -
id
(Integer
) -- The ID of a merge request. -
project
(Integer, String
) -- The ID or name of a project.
def update_merge_request_discussion_note(project, merge_request_id, discussion_id, note_id, options) put("/projects/#{url_encode project}/merge_requests/#{merge_request_id}/discussions/#{discussion_id}/notes/#{note_id}", body: options) end