{-# 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.Reseller.Customers.Insert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Order a new customer\'s account. -- -- /See:/ for @reseller.customers.insert@. module Network.Google.Resource.Reseller.Customers.Insert ( -- * REST Resource CustomersInsertResource -- * Creating a Request , customersInsert , CustomersInsert -- * Request Lenses , ciPayload , ciCustomerAuthToken ) where import Network.Google.AppsReseller.Types import Network.Google.Prelude -- | A resource alias for @reseller.customers.insert@ method which the -- 'CustomersInsert' request conforms to. type CustomersInsertResource = "apps" :> "reseller" :> "v1" :> "customers" :> QueryParam "customerAuthToken" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Customer :> Post '[JSON] Customer -- | Order a new customer\'s account. -- -- /See:/ 'customersInsert' smart constructor. data CustomersInsert = CustomersInsert' { _ciPayload :: !Customer , _ciCustomerAuthToken :: !(Maybe Text) } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'CustomersInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ciPayload' -- -- * 'ciCustomerAuthToken' customersInsert :: Customer -- ^ 'ciPayload' -> CustomersInsert customersInsert pCiPayload_ = CustomersInsert' {_ciPayload = pCiPayload_, _ciCustomerAuthToken = Nothing} -- | Multipart request metadata. ciPayload :: Lens' CustomersInsert Customer ciPayload = lens _ciPayload (\ s a -> s{_ciPayload = a}) -- | The customerAuthToken query string is required when creating a resold -- account that transfers a direct customer\'s subscription or transfers -- another reseller customer\'s subscription to your reseller management. -- This is a hexadecimal authentication token needed to complete the -- subscription transfer. For more information, see the administrator help -- center. ciCustomerAuthToken :: Lens' CustomersInsert (Maybe Text) ciCustomerAuthToken = lens _ciCustomerAuthToken (\ s a -> s{_ciCustomerAuthToken = a}) instance GoogleRequest CustomersInsert where type Rs CustomersInsert = Customer type Scopes CustomersInsert = '["https://www.googleapis.com/auth/apps.order"] requestClient CustomersInsert'{..} = go _ciCustomerAuthToken (Just AltJSON) _ciPayload appsResellerService where go = buildClient (Proxy :: Proxy CustomersInsertResource) mempty