deleteProperty method

Future<void> deleteProperty({
  1. required String sprintId,
  2. required String propertyKey,
})

Removes the property from the sprint identified by the id. Ths user removing the property is required to have permissions to modify the sprint.

Implementation

Future<void> deleteProperty(
    {required String sprintId, required String propertyKey}) async {
  await _client.send(
    'delete',
    'rest/agile/1.0/sprint/{sprintId}/properties/{propertyKey}',
    pathParameters: {
      'sprintId': sprintId,
      'propertyKey': propertyKey,
    },
  );
}