getIssueLinkTypes method

Future<IssueLinkTypes> getIssueLinkTypes()

Returns a list of all issue link types.

To use this operation, the site must have issue linking enabled.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for a project in the site.

Implementation

Future<IssueLinkTypes> getIssueLinkTypes() async {
  return IssueLinkTypes.fromJson(await _client.send(
    'get',
    'rest/api/3/issueLinkType',
  ));
}