{-# 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.AdExchangeSeller.Accounts.List -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- List all accounts available to this Ad Exchange account. -- -- /See:/ for @adexchangeseller.accounts.list@. module Network.Google.Resource.AdExchangeSeller.Accounts.List ( -- * REST Resource AccountsListResource -- * Creating a Request , accountsList , AccountsList -- * Request Lenses , alPageToken , alMaxResults ) where import Network.Google.AdExchangeSeller.Types import Network.Google.Prelude -- | A resource alias for @adexchangeseller.accounts.list@ method which the -- 'AccountsList' request conforms to. type AccountsListResource = "adexchangeseller" :> "v2.0" :> "accounts" :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Int32) :> QueryParam "alt" AltJSON :> Get '[JSON] Accounts -- | List all accounts available to this Ad Exchange account. -- -- /See:/ 'accountsList' smart constructor. data AccountsList = AccountsList' { _alPageToken :: !(Maybe Text) , _alMaxResults :: !(Maybe (Textual Int32)) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'AccountsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'alPageToken' -- -- * 'alMaxResults' accountsList :: AccountsList accountsList = AccountsList' { _alPageToken = Nothing , _alMaxResults = Nothing } -- | A continuation token, used to page through accounts. To retrieve the -- next page, set this parameter to the value of \"nextPageToken\" from the -- previous response. alPageToken :: Lens' AccountsList (Maybe Text) alPageToken = lens _alPageToken (\ s a -> s{_alPageToken = a}) -- | The maximum number of accounts to include in the response, used for -- paging. alMaxResults :: Lens' AccountsList (Maybe Int32) alMaxResults = lens _alMaxResults (\ s a -> s{_alMaxResults = a}) . mapping _Coerce instance GoogleRequest AccountsList where type Rs AccountsList = Accounts type Scopes AccountsList = '["https://www.googleapis.com/auth/adexchange.seller", "https://www.googleapis.com/auth/adexchange.seller.readonly"] requestClient AccountsList'{..} = go _alPageToken _alMaxResults (Just AltJSON) adExchangeSellerService where go = buildClient (Proxy :: Proxy AccountsListResource) mempty