{-# 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.AdExchangeSeller.Accounts.Preferreddeals.List -- 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) -- -- List the preferred deals for this Ad Exchange account. -- -- /See:/ for @adexchangeseller.accounts.preferreddeals.list@. module Gogol.AdExchangeSeller.Accounts.Preferreddeals.List ( -- * Resource AdExchangeSellerAccountsPreferreddealsListResource, -- ** Constructing a Request AdExchangeSellerAccountsPreferreddealsList (..), newAdExchangeSellerAccountsPreferreddealsList, ) where import Gogol.AdExchangeSeller.Types import Gogol.Prelude qualified as Core -- | A resource alias for @adexchangeseller.accounts.preferreddeals.list@ method which the -- 'AdExchangeSellerAccountsPreferreddealsList' request conforms to. type AdExchangeSellerAccountsPreferreddealsListResource = "adexchangeseller" Core.:> "v2.0" Core.:> "accounts" Core.:> Core.Capture "accountId" Core.Text Core.:> "preferreddeals" Core.:> Core.QueryParam "alt" Core.AltJSON Core.:> Core.Get '[Core.JSON] PreferredDeals -- | List the preferred deals for this Ad Exchange account. -- -- /See:/ 'newAdExchangeSellerAccountsPreferreddealsList' smart constructor. newtype AdExchangeSellerAccountsPreferreddealsList = AdExchangeSellerAccountsPreferreddealsList { -- | Account owning the deals. accountId :: Core.Text } deriving (Core.Eq, Core.Show, Core.Generic) -- | Creates a value of 'AdExchangeSellerAccountsPreferreddealsList' with the minimum fields required to make a request. newAdExchangeSellerAccountsPreferreddealsList :: -- | Account owning the deals. See 'accountId'. Core.Text -> AdExchangeSellerAccountsPreferreddealsList newAdExchangeSellerAccountsPreferreddealsList accountId = AdExchangeSellerAccountsPreferreddealsList {accountId = accountId} instance Core.GoogleRequest AdExchangeSellerAccountsPreferreddealsList where type Rs AdExchangeSellerAccountsPreferreddealsList = PreferredDeals type Scopes AdExchangeSellerAccountsPreferreddealsList = '[Adexchange'Seller, Adexchange'Seller'Readonly] requestClient AdExchangeSellerAccountsPreferreddealsList {..} = go accountId (Core.Just Core.AltJSON) adExchangeSellerService where go = Core.buildClient ( Core.Proxy :: Core.Proxy AdExchangeSellerAccountsPreferreddealsListResource ) Core.mempty