{-# 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.GamesManagement.Quests.ResetAllForAllPlayers -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Resets all draft quests for all players. This method is only available -- to user accounts for your developer console. -- -- /See:/ for @gamesManagement.quests.resetAllForAllPlayers@. module Network.Google.Resource.GamesManagement.Quests.ResetAllForAllPlayers ( -- * REST Resource QuestsResetAllForAllPlayersResource -- * Creating a Request , questsResetAllForAllPlayers , QuestsResetAllForAllPlayers ) where import Network.Google.GamesManagement.Types import Network.Google.Prelude -- | A resource alias for @gamesManagement.quests.resetAllForAllPlayers@ method which the -- 'QuestsResetAllForAllPlayers' request conforms to. type QuestsResetAllForAllPlayersResource = "games" :> "v1management" :> "quests" :> "resetAllForAllPlayers" :> QueryParam "alt" AltJSON :> Post '[JSON] () -- | Resets all draft quests for all players. This method is only available -- to user accounts for your developer console. -- -- /See:/ 'questsResetAllForAllPlayers' smart constructor. data QuestsResetAllForAllPlayers = QuestsResetAllForAllPlayers' deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'QuestsResetAllForAllPlayers' with the minimum fields required to make a request. -- questsResetAllForAllPlayers :: QuestsResetAllForAllPlayers questsResetAllForAllPlayers = QuestsResetAllForAllPlayers' instance GoogleRequest QuestsResetAllForAllPlayers where type Rs QuestsResetAllForAllPlayers = () type Scopes QuestsResetAllForAllPlayers = '["https://www.googleapis.com/auth/games", "https://www.googleapis.com/auth/plus.login"] requestClient QuestsResetAllForAllPlayers'{} = go (Just AltJSON) gamesManagementService where go = buildClient (Proxy :: Proxy QuestsResetAllForAllPlayersResource) mempty