partiallyUpdateEpic method

Future partiallyUpdateEpic({
  1. required String epicIdOrKey,
  2. required Map<String, dynamic> body,
})

Performs a partial update of the epic. A partial update means that fields not present in the request JSON will not be updated. Valid values for color are color_1 to color_9. Note: This operation does not work for epics in next-gen projects.

Implementation

Future<dynamic> partiallyUpdateEpic(
    {required String epicIdOrKey, required Map<String, dynamic> body}) async {
  return await _client.send(
    'post',
    'rest/agile/1.0/epic/{epicIdOrKey}',
    pathParameters: {
      'epicIdOrKey': epicIdOrKey,
    },
    body: body,
  );
}