deleteQuote method

Future<void> deleteQuote({
  1. required String quoteIdentifier,
})

Deletes the specified quote.

May throw AccessDeniedException. May throw InternalServerException. May throw NotFoundException. May throw ValidationException.

Parameter quoteIdentifier : The ID of the quote.

Implementation

Future<void> deleteQuote({
  required String quoteIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/quotes/${Uri.encodeComponent(quoteIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
}