IssueDiscussionsApi class

The documentation for this API is here: https://docs.gitlab.com/ee/api/discussions.html

Constructors

IssueDiscussionsApi(GitLab _gitLab, ProjectsApi _project, int? issueIid)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addNote(String discussionId, String body) Future<Note>
Adds a new note to an existing discussion of an issue.
create(String body) Future<Discussion>
Adds a new discussion to an issue.
deleteNote(String discussionId, int noteId) Future<void>
Deletes an existing note of an issue-discussion.
get(String discussionId) Future<Discussion>
Retrieves a single discussion.
list({int? page, int? perPage}) Future<List<Discussion?>>
Retrieves the list of discussions of an issue.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
updateNote(String discussionId, int noteId, String body) Future<Note>
Updates the body of an existing note of an issue-discussion.

Operators

operator ==(Object other) bool
The equality operator.
inherited