{-# 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 , auBuiltinGameId , auAchievementId ) 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 "builtinGameId" Text :> QueryParam "alt" AltJSON :> Post '[JSON] AchievementUnlockResponse -- | Unlocks this achievement for the currently authenticated player. -- -- /See:/ 'achievementsUnlock' smart constructor. data AchievementsUnlock = AchievementsUnlock' { _auBuiltinGameId :: !(Maybe Text) , _auAchievementId :: !Text } 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: -- -- * 'auBuiltinGameId' -- -- * 'auAchievementId' achievementsUnlock :: Text -- ^ 'auAchievementId' -> AchievementsUnlock achievementsUnlock pAuAchievementId_ = AchievementsUnlock' {_auBuiltinGameId = Nothing, _auAchievementId = pAuAchievementId_} -- | Override used only by built-in games in Play Games application. auBuiltinGameId :: Lens' AchievementsUnlock (Maybe Text) auBuiltinGameId = lens _auBuiltinGameId (\ s a -> s{_auBuiltinGameId = a}) -- | The ID of the achievement used by this method. auAchievementId :: Lens' AchievementsUnlock Text auAchievementId = lens _auAchievementId (\ s a -> s{_auAchievementId = a}) instance GoogleRequest AchievementsUnlock where type Rs AchievementsUnlock = AchievementUnlockResponse type Scopes AchievementsUnlock = '["https://www.googleapis.com/auth/games", "https://www.googleapis.com/auth/plus.me"] requestClient AchievementsUnlock'{..} = go _auAchievementId _auBuiltinGameId (Just AltJSON) gamesService where go = buildClient (Proxy :: Proxy AchievementsUnlockResource) mempty