getIssueSecurityLevel method

Future<SecurityLevel> getIssueSecurityLevel(
  1. String id
)

Returns details of an issue security level.

Use Get issue security scheme to obtain the IDs of issue security levels associated with the issue security scheme.

This operation can be accessed anonymously.

Permissions required: None.

Implementation

Future<SecurityLevel> getIssueSecurityLevel(String id) async {
  return SecurityLevel.fromJson(await _client.send(
    'get',
    'rest/api/3/securitylevel/{id}',
    pathParameters: {
      'id': id,
    },
  ));
}