aiMathMathStudentAnswersDestroy method

Future<void> aiMathMathStudentAnswersDestroy(
  1. int id,
  2. String org
)

Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin

Parameters:

  • int id (required): A unique integer value identifying this student answer.

  • String org (required):

Implementation

Future<void> aiMathMathStudentAnswersDestroy(int id, String org,) async {
  final response = await aiMathMathStudentAnswersDestroyWithHttpInfo(id, org,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}