getLatestAssessmentId method
Retrieve the latest ID of a specific assessment task.
May throw AccessDeniedException.
May throw DependencyException.
May throw InternalServerException.
May throw ValidationException.
Implementation
Future<GetLatestAssessmentIdResponse> getLatestAssessmentId() async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/get-latest-assessment-id',
exceptionFnMap: _exceptionFns,
);
return GetLatestAssessmentIdResponse.fromJson(response);
}