storeDevelopmentInformation method

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

Stores development information provided in the request to make it available when viewing issues in Jira. Existing repository and entity data for the same ID will be replaced if the updateSequenceId of existing data is less than the incoming data. Submissions are performed asynchronously. Submitted data will eventually be available in Jira; most updates are available within a short period of time, but may take some time during peak load and/or maintenance times.

Implementation

Future<Map<String, dynamic>> storeDevelopmentInformation(
    {required String authorization,
    required Map<String, dynamic> body}) async {
  return await _client.send(
    'post',
    'rest/devinfo/0.10/bulk',
    body: body,
  ) as Map<String, Object?>;
}