getVersionUnresolvedIssues method
Returns counts of the issues and unresolved issues for the project version.
This operation can be accessed anonymously.
Permissions required: Browse projects project permission for the project that contains the version.
Implementation
Future<VersionUnresolvedIssuesCount> getVersionUnresolvedIssues(
String id) async {
return VersionUnresolvedIssuesCount.fromJson(await _client.send(
'get',
'rest/api/3/version/{id}/unresolvedIssueCount',
pathParameters: {
'id': id,
},
));
}