IssuesApi

public interface IssuesApi implements WithApiKey

Issue related operations

Functions

getIssue
Link copied to clipboard
abstract Flow<DgfrCallState<Issue>> getIssue(String id)

Get an issue given its ID

getListIssues
Link copied to clipboard
abstract Flow<DgfrCallState<IssuePage>> getListIssues(String sort, Boolean closed, List<String> forIds, Integer page, Integer pageSize)

List all Issues

postCommentIssue
Link copied to clipboard
abstract Flow<DgfrCallState<Issue>> postCommentIssue(String id, IssueResponse payload)

Add comment and optionally close an issue given its ID

postCreateIssue
Link copied to clipboard
abstract Flow<DgfrCallState<Issue>> postCreateIssue(Issue payload)

Create a new Issue

setApiKey
Link copied to clipboard
abstract Unit setApiKey(String apiKey)

Inheritors

DgfrService
Link copied to clipboard