getAccountSettings method
Get the account settings for Artifact.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<GetAccountSettingsResponse> getAccountSettings() async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/v1/account-settings/get',
exceptionFnMap: _exceptionFns,
);
return GetAccountSettingsResponse.fromJson(response);
}