getAssessmentFramework method

Future<GetAssessmentFrameworkResponse> getAssessmentFramework({
  1. required String frameworkId,
})

Gets information about a specified framework.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter frameworkId : The identifier for the framework.

Implementation

Future<GetAssessmentFrameworkResponse> getAssessmentFramework({
  required String frameworkId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/assessmentFrameworks/${Uri.encodeComponent(frameworkId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetAssessmentFrameworkResponse.fromJson(response);
}