apiV2PersonalityTestLevelsDestroy method
Parameters:
- int id (required): A unique integer value identifying this personality test level.
Implementation
Future<void> apiV2PersonalityTestLevelsDestroy(int id,) async {
final response = await apiV2PersonalityTestLevelsDestroyWithHttpInfo(id,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}