getPropertiesKeys method

Future<void> getPropertiesKeys(
  1. String sprintId
)

Returns the keys of all properties for the sprint identified by the id. The user who retrieves the property keys is required to have permissions to view the sprint.

Implementation

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