getIssueLinkType method

Future<IssueLinkType> getIssueLinkType(
  1. String issueLinkTypeId
)

Returns an issue link type.

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<IssueLinkType> getIssueLinkType(String issueLinkTypeId) async {
  return IssueLinkType.fromJson(await _client.send(
    'get',
    'rest/api/3/issueLinkType/{issueLinkTypeId}',
    pathParameters: {
      'issueLinkTypeId': issueLinkTypeId,
    },
  ));
}