{-# 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.Orderinvoices.Createrefundinvoice -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a refund invoice for one or more shipment groups, and triggers a -- refund for non-facilitated payment orders. This can only be used for -- line items that have previously been charged using createChargeInvoice. -- All amounts (except for the summary) are incremental with respect to the -- previous invoice. -- -- /See:/ for @content.orderinvoices.createrefundinvoice@. module Network.Google.Resource.Content.Orderinvoices.Createrefundinvoice ( -- * REST Resource OrderinvoicesCreaterefundinvoiceResource -- * Creating a Request , orderinvoicesCreaterefundinvoice , OrderinvoicesCreaterefundinvoice -- * Request Lenses , ocMerchantId , ocPayload , ocOrderId ) where import Network.Google.Prelude import Network.Google.ShoppingContent.Types -- | A resource alias for @content.orderinvoices.createrefundinvoice@ method which the -- 'OrderinvoicesCreaterefundinvoice' request conforms to. type OrderinvoicesCreaterefundinvoiceResource = "content" :> "v2.1" :> Capture "merchantId" (Textual Word64) :> "orderinvoices" :> Capture "orderId" Text :> "createRefundInvoice" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] OrderinvoicesCreateRefundInvoiceRequest :> Post '[JSON] OrderinvoicesCreateRefundInvoiceResponse -- | Creates a refund invoice for one or more shipment groups, and triggers a -- refund for non-facilitated payment orders. This can only be used for -- line items that have previously been charged using createChargeInvoice. -- All amounts (except for the summary) are incremental with respect to the -- previous invoice. -- -- /See:/ 'orderinvoicesCreaterefundinvoice' smart constructor. data OrderinvoicesCreaterefundinvoice = OrderinvoicesCreaterefundinvoice' { _ocMerchantId :: !(Textual Word64) , _ocPayload :: !OrderinvoicesCreateRefundInvoiceRequest , _ocOrderId :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'OrderinvoicesCreaterefundinvoice' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ocMerchantId' -- -- * 'ocPayload' -- -- * 'ocOrderId' orderinvoicesCreaterefundinvoice :: Word64 -- ^ 'ocMerchantId' -> OrderinvoicesCreateRefundInvoiceRequest -- ^ 'ocPayload' -> Text -- ^ 'ocOrderId' -> OrderinvoicesCreaterefundinvoice orderinvoicesCreaterefundinvoice pOcMerchantId_ pOcPayload_ pOcOrderId_ = OrderinvoicesCreaterefundinvoice' { _ocMerchantId = _Coerce # pOcMerchantId_ , _ocPayload = pOcPayload_ , _ocOrderId = pOcOrderId_ } -- | The ID of the account that manages the order. This cannot be a -- multi-client account. ocMerchantId :: Lens' OrderinvoicesCreaterefundinvoice Word64 ocMerchantId = lens _ocMerchantId (\ s a -> s{_ocMerchantId = a}) . _Coerce -- | Multipart request metadata. ocPayload :: Lens' OrderinvoicesCreaterefundinvoice OrderinvoicesCreateRefundInvoiceRequest ocPayload = lens _ocPayload (\ s a -> s{_ocPayload = a}) -- | The ID of the order. ocOrderId :: Lens' OrderinvoicesCreaterefundinvoice Text ocOrderId = lens _ocOrderId (\ s a -> s{_ocOrderId = a}) instance GoogleRequest OrderinvoicesCreaterefundinvoice where type Rs OrderinvoicesCreaterefundinvoice = OrderinvoicesCreateRefundInvoiceResponse type Scopes OrderinvoicesCreaterefundinvoice = '["https://www.googleapis.com/auth/content"] requestClient OrderinvoicesCreaterefundinvoice'{..} = go _ocMerchantId _ocOrderId (Just AltJSON) _ocPayload shoppingContentService where go = buildClient (Proxy :: Proxy OrderinvoicesCreaterefundinvoiceResource) mempty