{-# 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.Achievements.Unlock -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Unlocks this achievement for the currently authenticated player. -- -- /See:/ for @games.achievements.unlock@. module Network.Google.Resource.Games.Achievements.Unlock ( -- * REST Resource AchievementsUnlockResource -- * Creating a Request , achievementsUnlock , AchievementsUnlock -- * Request Lenses , auAchievementId , auConsistencyToken ) where import Network.Google.Games.Types import Network.Google.Prelude -- | A resource alias for @games.achievements.unlock@ method which the -- 'AchievementsUnlock' request conforms to. type AchievementsUnlockResource = "games" :> "v1" :> "achievements" :> Capture "achievementId" Text :> "unlock" :> QueryParam "consistencyToken" (Textual Int64) :> QueryParam "alt" AltJSON :> Post '[JSON] AchievementUnlockResponse -- | Unlocks this achievement for the currently authenticated player. -- -- /See:/ 'achievementsUnlock' smart constructor. data AchievementsUnlock = AchievementsUnlock' { _auAchievementId :: !Text , _auConsistencyToken :: !(Maybe (Textual Int64)) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'AchievementsUnlock' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'auAchievementId' -- -- * 'auConsistencyToken' achievementsUnlock :: Text -- ^ 'auAchievementId' -> AchievementsUnlock achievementsUnlock pAuAchievementId_ = AchievementsUnlock' { _auAchievementId = pAuAchievementId_ , _auConsistencyToken = Nothing } -- | The ID of the achievement used by this method. auAchievementId :: Lens' AchievementsUnlock Text auAchievementId = lens _auAchievementId (\ s a -> s{_auAchievementId = a}) -- | The last-seen mutation timestamp. auConsistencyToken :: Lens' AchievementsUnlock (Maybe Int64) auConsistencyToken = lens _auConsistencyToken (\ s a -> s{_auConsistencyToken = a}) . mapping _Coerce instance GoogleRequest AchievementsUnlock where type Rs AchievementsUnlock = AchievementUnlockResponse type Scopes AchievementsUnlock = '["https://www.googleapis.com/auth/games", "https://www.googleapis.com/auth/plus.login"] requestClient AchievementsUnlock'{..} = go _auAchievementId _auConsistencyToken (Just AltJSON) gamesService where go = buildClient (Proxy :: Proxy AchievementsUnlockResource) mempty