{-# LANGUAGE DataKinds #-} {-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE ImportQualifiedPost #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE PatternSynonyms #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- | -- Module : Gogol.AdSenseHost.Accounts.Get -- Copyright : (c) 2015-2025 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Toni Cebrián -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Get information about the selected associated AdSense account. -- -- /See:/ for @adsensehost.accounts.get@. module Gogol.AdSenseHost.Accounts.Get ( -- * Resource AdSenseHostAccountsGetResource, -- ** Constructing a Request AdSenseHostAccountsGet (..), newAdSenseHostAccountsGet, ) where import Gogol.AdSenseHost.Types import Gogol.Prelude qualified as Core -- | A resource alias for @adsensehost.accounts.get@ method which the -- 'AdSenseHostAccountsGet' request conforms to. type AdSenseHostAccountsGetResource = "adsensehost" Core.:> "v4.1" Core.:> "accounts" Core.:> Core.Capture "accountId" Core.Text Core.:> Core.QueryParam "alt" Core.AltJSON Core.:> Core.Get '[Core.JSON] Account -- | Get information about the selected associated AdSense account. -- -- /See:/ 'newAdSenseHostAccountsGet' smart constructor. newtype AdSenseHostAccountsGet = AdSenseHostAccountsGet { -- | Account to get information about. accountId :: Core.Text } deriving (Core.Eq, Core.Show, Core.Generic) -- | Creates a value of 'AdSenseHostAccountsGet' with the minimum fields required to make a request. newAdSenseHostAccountsGet :: -- | Account to get information about. See 'accountId'. Core.Text -> AdSenseHostAccountsGet newAdSenseHostAccountsGet accountId = AdSenseHostAccountsGet {accountId = accountId} instance Core.GoogleRequest AdSenseHostAccountsGet where type Rs AdSenseHostAccountsGet = Account type Scopes AdSenseHostAccountsGet = '[Adsensehost'FullControl] requestClient AdSenseHostAccountsGet {..} = go accountId (Core.Just Core.AltJSON) adSenseHostService where go = Core.buildClient (Core.Proxy :: Core.Proxy AdSenseHostAccountsGetResource) Core.mempty