deleteDiscoverer method
Deletes a discoverer.
May throw BadRequestException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw ServiceUnavailableException.
May throw UnauthorizedException.
Parameter discovererId :
The ID of the discoverer.
Implementation
Future<void> deleteDiscoverer({
required String discovererId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/v1/discoverers/id/${Uri.encodeComponent(discovererId)}',
exceptionFnMap: _exceptionFns,
);
}