getComponentRelatedIssues method

Future<ComponentIssuesCount> getComponentRelatedIssues(
  1. String id
)

Returns the counts of issues assigned to the component.

This operation can be accessed anonymously.

Permissions required: None.

Implementation

Future<ComponentIssuesCount> getComponentRelatedIssues(String id) async {
  return ComponentIssuesCount.fromJson(await _client.send(
    'get',
    'rest/api/3/component/{id}/relatedIssueCounts',
    pathParameters: {
      'id': id,
    },
  ));
}