gogol-games-0.5.0: Google Play Game Services SDK.

Copyright(c) 2015-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.Games.Quests.List

Contents

Description

Get a list of quests for your application and the currently authenticated player.

See: Google Play Game Services API Reference for games.quests.list.

Synopsis

REST Resource

type QuestsListResource = "games" :> ("v1" :> ("players" :> (Capture "playerId" Text :> ("quests" :> (QueryParam "language" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Int32) :> (QueryParam "alt" AltJSON :> Get '[JSON] QuestListResponse)))))))) Source #

A resource alias for games.quests.list method which the QuestsList request conforms to.

Creating a Request

questsList Source #

Arguments

:: Text

qlPlayerId

-> QuestsList 

Creates a value of QuestsList with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data QuestsList Source #

Get a list of quests for your application and the currently authenticated player.

See: questsList smart constructor.

Instances
Eq QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

Data QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> QuestsList -> c QuestsList #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c QuestsList #

toConstr :: QuestsList -> Constr #

dataTypeOf :: QuestsList -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c QuestsList) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c QuestsList) #

gmapT :: (forall b. Data b => b -> b) -> QuestsList -> QuestsList #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> QuestsList -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> QuestsList -> r #

gmapQ :: (forall d. Data d => d -> u) -> QuestsList -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> QuestsList -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> QuestsList -> m QuestsList #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> QuestsList -> m QuestsList #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> QuestsList -> m QuestsList #

Show QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

Generic QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

Associated Types

type Rep QuestsList :: Type -> Type #

GoogleRequest QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

Associated Types

type Rs QuestsList :: Type #

type Scopes QuestsList :: [Symbol] #

type Rep QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

type Rep QuestsList = D1 (MetaData "QuestsList" "Network.Google.Resource.Games.Quests.List" "gogol-games-0.5.0-IOfttE0raSUDqs74eP7e0u" False) (C1 (MetaCons "QuestsList'" PrefixI True) ((S1 (MetaSel (Just "_qlLanguage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_qlPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_qlPlayerId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_qlMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))))
type Scopes QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

type Scopes QuestsList = "https://www.googleapis.com/auth/games" ': ("https://www.googleapis.com/auth/plus.me" ': ([] :: [Symbol]))
type Rs QuestsList Source # 
Instance details

Defined in Network.Google.Resource.Games.Quests.List

Request Lenses

qlLanguage :: Lens' QuestsList (Maybe Text) Source #

The preferred language to use for strings returned by this method.

qlPageToken :: Lens' QuestsList (Maybe Text) Source #

The token returned by the previous request.

qlPlayerId :: Lens' QuestsList Text Source #

A player ID. A value of me may be used in place of the authenticated player's ID.

qlMaxResults :: Lens' QuestsList (Maybe Int32) Source #

The maximum number of quest resources to return in the response, used for paging. For any response, the actual number of quest resources returned may be less than the specified maxResults. Acceptable values are 1 to 50, inclusive. (Default: 50).