{-# 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.Accounttax.Update -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates the tax settings of the account. -- -- /See:/ for @content.accounttax.update@. module Network.Google.Resource.Content.Accounttax.Update ( -- * REST Resource AccounttaxUpdateResource -- * Creating a Request , accounttaxUpdate , AccounttaxUpdate -- * Request Lenses , auMerchantId , auPayload , auAccountId ) where import Network.Google.Prelude import Network.Google.ShoppingContent.Types -- | A resource alias for @content.accounttax.update@ method which the -- 'AccounttaxUpdate' request conforms to. type AccounttaxUpdateResource = "content" :> "v2.1" :> Capture "merchantId" (Textual Word64) :> "accounttax" :> Capture "accountId" (Textual Word64) :> QueryParam "alt" AltJSON :> ReqBody '[JSON] AccountTax :> Put '[JSON] AccountTax -- | Updates the tax settings of the account. -- -- /See:/ 'accounttaxUpdate' smart constructor. data AccounttaxUpdate = AccounttaxUpdate' { _auMerchantId :: !(Textual Word64) , _auPayload :: !AccountTax , _auAccountId :: !(Textual Word64) } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'AccounttaxUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'auMerchantId' -- -- * 'auPayload' -- -- * 'auAccountId' accounttaxUpdate :: Word64 -- ^ 'auMerchantId' -> AccountTax -- ^ 'auPayload' -> Word64 -- ^ 'auAccountId' -> AccounttaxUpdate accounttaxUpdate pAuMerchantId_ pAuPayload_ pAuAccountId_ = AccounttaxUpdate' { _auMerchantId = _Coerce # pAuMerchantId_ , _auPayload = pAuPayload_ , _auAccountId = _Coerce # pAuAccountId_ } -- | The ID of the managing account. If this parameter is not the same as -- accountId, then this account must be a multi-client account and -- accountId must be the ID of a sub-account of this account. auMerchantId :: Lens' AccounttaxUpdate Word64 auMerchantId = lens _auMerchantId (\ s a -> s{_auMerchantId = a}) . _Coerce -- | Multipart request metadata. auPayload :: Lens' AccounttaxUpdate AccountTax auPayload = lens _auPayload (\ s a -> s{_auPayload = a}) -- | The ID of the account for which to get\/update account tax settings. auAccountId :: Lens' AccounttaxUpdate Word64 auAccountId = lens _auAccountId (\ s a -> s{_auAccountId = a}) . _Coerce instance GoogleRequest AccounttaxUpdate where type Rs AccounttaxUpdate = AccountTax type Scopes AccounttaxUpdate = '["https://www.googleapis.com/auth/content"] requestClient AccounttaxUpdate'{..} = go _auMerchantId _auAccountId (Just AltJSON) _auPayload shoppingContentService where go = buildClient (Proxy :: Proxy AccounttaxUpdateResource) mempty