getFeaturesForProject method
Returns the list of features for a project.
Implementation
Future<ContainerForProjectFeatures> getFeaturesForProject(
String projectIdOrKey) async {
return ContainerForProjectFeatures.fromJson(await _client.send(
'get',
'rest/api/3/project/{projectIdOrKey}/features',
pathParameters: {
'projectIdOrKey': projectIdOrKey,
},
));
}