apiV2PersonalityTestLevelsDestroy method

Future<void> apiV2PersonalityTestLevelsDestroy(
  1. int id
)

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));
  }
}