{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.Content.Products.Delete -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes a product from your Merchant Center account. -- -- /See:/ for @content.products.delete@. module Network.Google.Resource.Content.Products.Delete ( -- * REST Resource ProductsDeleteResource -- * Creating a Request , productsDelete , ProductsDelete -- * Request Lenses , pdMerchantId , pdProductId , pdDryRun ) where import Network.Google.Prelude import Network.Google.ShoppingContent.Types -- | A resource alias for @content.products.delete@ method which the -- 'ProductsDelete' request conforms to. type ProductsDeleteResource = "content" :> "v2" :> Capture "merchantId" (Textual Word64) :> "products" :> Capture "productId" Text :> QueryParam "dryRun" Bool :> QueryParam "alt" AltJSON :> Delete '[JSON] () -- | Deletes a product from your Merchant Center account. -- -- /See:/ 'productsDelete' smart constructor. data ProductsDelete = ProductsDelete' { _pdMerchantId :: !(Textual Word64) , _pdProductId :: !Text , _pdDryRun :: !(Maybe Bool) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProductsDelete' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'pdMerchantId' -- -- * 'pdProductId' -- -- * 'pdDryRun' productsDelete :: Word64 -- ^ 'pdMerchantId' -> Text -- ^ 'pdProductId' -> ProductsDelete productsDelete pPdMerchantId_ pPdProductId_ = ProductsDelete' { _pdMerchantId = _Coerce # pPdMerchantId_ , _pdProductId = pPdProductId_ , _pdDryRun = Nothing } -- | The ID of the managing account. pdMerchantId :: Lens' ProductsDelete Word64 pdMerchantId = lens _pdMerchantId (\ s a -> s{_pdMerchantId = a}) . _Coerce -- | The ID of the product. pdProductId :: Lens' ProductsDelete Text pdProductId = lens _pdProductId (\ s a -> s{_pdProductId = a}) -- | Flag to run the request in dry-run mode. pdDryRun :: Lens' ProductsDelete (Maybe Bool) pdDryRun = lens _pdDryRun (\ s a -> s{_pdDryRun = a}) instance GoogleRequest ProductsDelete where type Rs ProductsDelete = () type Scopes ProductsDelete = '["https://www.googleapis.com/auth/content"] requestClient ProductsDelete'{..} = go _pdMerchantId _pdProductId _pdDryRun (Just AltJSON) shoppingContentService where go = buildClient (Proxy :: Proxy ProductsDeleteResource) mempty