getUseCaseForModelAccess method
Get usecase for model access.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<GetUseCaseForModelAccessResponse> getUseCaseForModelAccess() async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/use-case-for-model-access',
exceptionFnMap: _exceptionFns,
);
return GetUseCaseForModelAccessResponse.fromJson(response);
}