updatePrecomputations method

Future updatePrecomputations({
  1. required JqlFunctionPrecomputationUpdateRequestBean body,
})

Update the precomputation value of a function created by a Forge/Connect app.

Permissions required: An API for apps to update their own precomputations.

Implementation

Future<dynamic> updatePrecomputations(
    {required JqlFunctionPrecomputationUpdateRequestBean body}) async {
  return await _client.send(
    'post',
    'rest/api/3/jql/function/computation',
    body: body.toJson(),
  );
}