deleteProductPage method
Deletes a product page of a portal product.
May throw AccessDeniedException.
May throw BadRequestException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter portalProductId :
The portal product identifier.
Parameter productPageId :
The portal product identifier.
Implementation
Future<void> deleteProductPage({
required String portalProductId,
required String productPageId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v2/portalproducts/${Uri.encodeComponent(portalProductId)}/productpages/${Uri.encodeComponent(productPageId)}',
exceptionFnMap: _exceptionFns,
);
}