{-# 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.Reports.Saved.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 saved reports in this AdSense account. -- -- /See:/ for @adsense.reports.saved.list@. module Network.Google.Resource.AdSense.Reports.Saved.List ( -- * REST Resource ReportsSavedListResource -- * Creating a Request , reportsSavedList , ReportsSavedList -- * Request Lenses , rslPageToken , rslMaxResults ) where import Network.Google.AdSense.Types import Network.Google.Prelude -- | A resource alias for @adsense.reports.saved.list@ method which the -- 'ReportsSavedList' request conforms to. type ReportsSavedListResource = "adsense" :> "v1.4" :> "reports" :> "saved" :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Int32) :> QueryParam "alt" AltJSON :> Get '[JSON] SavedReports -- | List all saved reports in this AdSense account. -- -- /See:/ 'reportsSavedList' smart constructor. data ReportsSavedList = ReportsSavedList' { _rslPageToken :: !(Maybe Text) , _rslMaxResults :: !(Maybe (Textual Int32)) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ReportsSavedList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'rslPageToken' -- -- * 'rslMaxResults' reportsSavedList :: ReportsSavedList reportsSavedList = ReportsSavedList' { _rslPageToken = Nothing , _rslMaxResults = Nothing } -- | A continuation token, used to page through saved reports. To retrieve -- the next page, set this parameter to the value of \"nextPageToken\" from -- the previous response. rslPageToken :: Lens' ReportsSavedList (Maybe Text) rslPageToken = lens _rslPageToken (\ s a -> s{_rslPageToken = a}) -- | The maximum number of saved reports to include in the response, used for -- paging. rslMaxResults :: Lens' ReportsSavedList (Maybe Int32) rslMaxResults = lens _rslMaxResults (\ s a -> s{_rslMaxResults = a}) . mapping _Coerce instance GoogleRequest ReportsSavedList where type Rs ReportsSavedList = SavedReports type Scopes ReportsSavedList = '["https://www.googleapis.com/auth/adsense", "https://www.googleapis.com/auth/adsense.readonly"] requestClient ReportsSavedList'{..} = go _rslPageToken _rslMaxResults (Just AltJSON) adSenseService where go = buildClient (Proxy :: Proxy ReportsSavedListResource) mempty