gogol-adsense-0.5.0: gen/Network/Google/Resource/AdSense/Payments/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.Payments.List
-- Copyright : (c) 2015-2016 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 the payments for this AdSense account.
--
-- /See:/ <https://developers.google.com/adsense/management/ AdSense Management API Reference> for @adsense.payments.list@.
module Network.Google.Resource.AdSense.Payments.List
(
-- * REST Resource
PaymentsListResource
-- * Creating a Request
, paymentsList
, PaymentsList
) where
import Network.Google.AdSense.Types
import Network.Google.Prelude
-- | A resource alias for @adsense.payments.list@ method which the
-- 'PaymentsList' request conforms to.
type PaymentsListResource =
"adsense" :>
"v1.4" :>
"payments" :>
QueryParam "alt" AltJSON :> Get '[JSON] Payments
-- | List the payments for this AdSense account.
--
-- /See:/ 'paymentsList' smart constructor.
data PaymentsList =
PaymentsList'
deriving (Eq, Show, Data, Typeable, Generic)
-- | Creates a value of 'PaymentsList' with the minimum fields required to make a request.
--
paymentsList
:: PaymentsList
paymentsList = PaymentsList'
instance GoogleRequest PaymentsList where
type Rs PaymentsList = Payments
type Scopes PaymentsList =
'["https://www.googleapis.com/auth/adsense",
"https://www.googleapis.com/auth/adsense.readonly"]
requestClient PaymentsList'{}
= go (Just AltJSON) adSenseService
where go
= buildClient (Proxy :: Proxy PaymentsListResource)
mempty