{-# 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.Games.TurnBasedMatches.Dismiss -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Dismiss a turn-based match from the match list. The match will no longer -- show up in the list and will not generate notifications. -- -- /See:/ for @games.turnBasedMatches.dismiss@. module Network.Google.Resource.Games.TurnBasedMatches.Dismiss ( -- * REST Resource TurnBasedMatchesDismissResource -- * Creating a Request , turnBasedMatchesDismiss , TurnBasedMatchesDismiss -- * Request Lenses , tMatchId ) where import Network.Google.Games.Types import Network.Google.Prelude -- | A resource alias for @games.turnBasedMatches.dismiss@ method which the -- 'TurnBasedMatchesDismiss' request conforms to. type TurnBasedMatchesDismissResource = "games" :> "v1" :> "turnbasedmatches" :> Capture "matchId" Text :> "dismiss" :> QueryParam "alt" AltJSON :> Put '[JSON] () -- | Dismiss a turn-based match from the match list. The match will no longer -- show up in the list and will not generate notifications. -- -- /See:/ 'turnBasedMatchesDismiss' smart constructor. newtype TurnBasedMatchesDismiss = TurnBasedMatchesDismiss' { _tMatchId :: Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'TurnBasedMatchesDismiss' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'tMatchId' turnBasedMatchesDismiss :: Text -- ^ 'tMatchId' -> TurnBasedMatchesDismiss turnBasedMatchesDismiss pTMatchId_ = TurnBasedMatchesDismiss' { _tMatchId = pTMatchId_ } -- | The ID of the match. tMatchId :: Lens' TurnBasedMatchesDismiss Text tMatchId = lens _tMatchId (\ s a -> s{_tMatchId = a}) instance GoogleRequest TurnBasedMatchesDismiss where type Rs TurnBasedMatchesDismiss = () type Scopes TurnBasedMatchesDismiss = '["https://www.googleapis.com/auth/games"] requestClient TurnBasedMatchesDismiss'{..} = go _tMatchId (Just AltJSON) gamesService where go = buildClient (Proxy :: Proxy TurnBasedMatchesDismissResource) mempty