gogol-adsense-0.0.1: gen/Network/Google/Resource/AdSense/Accounts/CustomChannels/List.hs
{-# 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.AdSense.Accounts.CustomChannels.List
-- Copyright : (c) 2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- List all custom channels in the specified ad client for the specified
-- account.
--
-- /See:/ <https://developers.google.com/adsense/management/ AdSense Management API Reference> for @adsense.accounts.customchannels.list@.
module Network.Google.Resource.AdSense.Accounts.CustomChannels.List
(
-- * REST Resource
AccountsCustomChannelsListResource
-- * Creating a Request
, accountsCustomChannelsList
, AccountsCustomChannelsList
-- * Request Lenses
, acclAdClientId
, acclAccountId
, acclPageToken
, acclMaxResults
) where
import Network.Google.AdSense.Types
import Network.Google.Prelude
-- | A resource alias for @adsense.accounts.customchannels.list@ method which the
-- 'AccountsCustomChannelsList' request conforms to.
type AccountsCustomChannelsListResource =
"adsense" :>
"v1.4" :>
"accounts" :>
Capture "accountId" Text :>
"adclients" :>
Capture "adClientId" Text :>
"customchannels" :>
QueryParam "pageToken" Text :>
QueryParam "maxResults" (Textual Int32) :>
QueryParam "alt" AltJSON :>
Get '[JSON] CustomChannels
-- | List all custom channels in the specified ad client for the specified
-- account.
--
-- /See:/ 'accountsCustomChannelsList' smart constructor.
data AccountsCustomChannelsList = AccountsCustomChannelsList
{ _acclAdClientId :: !Text
, _acclAccountId :: !Text
, _acclPageToken :: !(Maybe Text)
, _acclMaxResults :: !(Maybe (Textual Int32))
} deriving (Eq,Show,Data,Typeable,Generic)
-- | Creates a value of 'AccountsCustomChannelsList' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'acclAdClientId'
--
-- * 'acclAccountId'
--
-- * 'acclPageToken'
--
-- * 'acclMaxResults'
accountsCustomChannelsList
:: Text -- ^ 'acclAdClientId'
-> Text -- ^ 'acclAccountId'
-> AccountsCustomChannelsList
accountsCustomChannelsList pAcclAdClientId_ pAcclAccountId_ =
AccountsCustomChannelsList
{ _acclAdClientId = pAcclAdClientId_
, _acclAccountId = pAcclAccountId_
, _acclPageToken = Nothing
, _acclMaxResults = Nothing
}
-- | Ad client for which to list custom channels.
acclAdClientId :: Lens' AccountsCustomChannelsList Text
acclAdClientId
= lens _acclAdClientId
(\ s a -> s{_acclAdClientId = a})
-- | Account to which the ad client belongs.
acclAccountId :: Lens' AccountsCustomChannelsList Text
acclAccountId
= lens _acclAccountId
(\ s a -> s{_acclAccountId = a})
-- | A continuation token, used to page through custom channels. To retrieve
-- the next page, set this parameter to the value of \"nextPageToken\" from
-- the previous response.
acclPageToken :: Lens' AccountsCustomChannelsList (Maybe Text)
acclPageToken
= lens _acclPageToken
(\ s a -> s{_acclPageToken = a})
-- | The maximum number of custom channels to include in the response, used
-- for paging.
acclMaxResults :: Lens' AccountsCustomChannelsList (Maybe Int32)
acclMaxResults
= lens _acclMaxResults
(\ s a -> s{_acclMaxResults = a})
. mapping _Coerce
instance GoogleRequest AccountsCustomChannelsList
where
type Rs AccountsCustomChannelsList = CustomChannels
requestClient AccountsCustomChannelsList{..}
= go _acclAccountId _acclAdClientId _acclPageToken
_acclMaxResults
(Just AltJSON)
adSenseService
where go
= buildClient
(Proxy :: Proxy AccountsCustomChannelsListResource)
mempty