{-# 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.Orders.GettestOrdertemplate -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Sandbox only. Retrieves an order template that can be used to quickly -- create a new order in sandbox. -- -- /See:/ for @content.orders.gettestordertemplate@. module Network.Google.Resource.Content.Orders.GettestOrdertemplate ( -- * REST Resource OrdersGettestOrdertemplateResource -- * Creating a Request , ordersGettestOrdertemplate , OrdersGettestOrdertemplate -- * Request Lenses , ogoMerchantId , ogoTemplateName , ogoCountry ) where import Network.Google.Prelude import Network.Google.ShoppingContent.Types -- | A resource alias for @content.orders.gettestordertemplate@ method which the -- 'OrdersGettestOrdertemplate' request conforms to. type OrdersGettestOrdertemplateResource = "content" :> "v2.1" :> Capture "merchantId" (Textual Word64) :> "testordertemplates" :> Capture "templateName" OrdersGettestOrdertemplateTemplateName :> QueryParam "country" Text :> QueryParam "alt" AltJSON :> Get '[JSON] OrdersGetTestOrderTemplateResponse -- | Sandbox only. Retrieves an order template that can be used to quickly -- create a new order in sandbox. -- -- /See:/ 'ordersGettestOrdertemplate' smart constructor. data OrdersGettestOrdertemplate = OrdersGettestOrdertemplate' { _ogoMerchantId :: !(Textual Word64) , _ogoTemplateName :: !OrdersGettestOrdertemplateTemplateName , _ogoCountry :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'OrdersGettestOrdertemplate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ogoMerchantId' -- -- * 'ogoTemplateName' -- -- * 'ogoCountry' ordersGettestOrdertemplate :: Word64 -- ^ 'ogoMerchantId' -> OrdersGettestOrdertemplateTemplateName -- ^ 'ogoTemplateName' -> OrdersGettestOrdertemplate ordersGettestOrdertemplate pOgoMerchantId_ pOgoTemplateName_ = OrdersGettestOrdertemplate' { _ogoMerchantId = _Coerce # pOgoMerchantId_ , _ogoTemplateName = pOgoTemplateName_ , _ogoCountry = Nothing } -- | The ID of the account that should manage the order. This cannot be a -- multi-client account. ogoMerchantId :: Lens' OrdersGettestOrdertemplate Word64 ogoMerchantId = lens _ogoMerchantId (\ s a -> s{_ogoMerchantId = a}) . _Coerce -- | The name of the template to retrieve. ogoTemplateName :: Lens' OrdersGettestOrdertemplate OrdersGettestOrdertemplateTemplateName ogoTemplateName = lens _ogoTemplateName (\ s a -> s{_ogoTemplateName = a}) -- | The country of the template to retrieve. Defaults to US. ogoCountry :: Lens' OrdersGettestOrdertemplate (Maybe Text) ogoCountry = lens _ogoCountry (\ s a -> s{_ogoCountry = a}) instance GoogleRequest OrdersGettestOrdertemplate where type Rs OrdersGettestOrdertemplate = OrdersGetTestOrderTemplateResponse type Scopes OrdersGettestOrdertemplate = '["https://www.googleapis.com/auth/content"] requestClient OrdersGettestOrdertemplate'{..} = go _ogoMerchantId _ogoTemplateName _ogoCountry (Just AltJSON) shoppingContentService where go = buildClient (Proxy :: Proxy OrdersGettestOrdertemplateResource) mempty