gogol-plus-0.1.0: Google + 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.Plus.People.ListByActivity

Contents

Description

List all of the people in the specified collection for a particular activity.

See: Google+ API Reference for plus.people.listByActivity.

Synopsis

REST Resource

type PeopleListByActivityResource = "plus" :> ("v1" :> ("activities" :> (Capture "activityId" Text :> ("people" :> (Capture "collection" PeopleListByActivityCollection :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] PeopleFeed)))))))) Source #

A resource alias for plus.people.listByActivity method which the PeopleListByActivity request conforms to.

Creating a Request

peopleListByActivity Source #

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

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

data PeopleListByActivity Source #

List all of the people in the specified collection for a particular activity.

See: peopleListByActivity smart constructor.

Instances

Eq PeopleListByActivity Source # 
Data PeopleListByActivity Source # 

Methods

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

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

toConstr :: PeopleListByActivity -> Constr #

dataTypeOf :: PeopleListByActivity -> DataType #

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

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

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

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

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

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

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

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

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

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

Show PeopleListByActivity Source # 
Generic PeopleListByActivity Source # 
GoogleRequest PeopleListByActivity Source # 
type Rep PeopleListByActivity Source # 
type Rep PeopleListByActivity = D1 (MetaData "PeopleListByActivity" "Network.Google.Resource.Plus.People.ListByActivity" "gogol-plus-0.1.0-9sHkn4h1hwi5eUxRDQe6DI" False) (C1 (MetaCons "PeopleListByActivity'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_plbaActivityId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_plbaCollection") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 PeopleListByActivityCollection))) ((:*:) (S1 (MetaSel (Just Symbol "_plbaPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_plbaMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Textual Word32))))))
type Scopes PeopleListByActivity Source # 
type Scopes PeopleListByActivity = (:) Symbol "https://www.googleapis.com/auth/plus.login" ((:) Symbol "https://www.googleapis.com/auth/plus.me" ([] Symbol))
type Rs PeopleListByActivity Source # 

Request Lenses

plbaActivityId :: Lens' PeopleListByActivity Text Source #

The ID of the activity to get the list of people for.

plbaPageToken :: Lens' PeopleListByActivity (Maybe Text) Source #

The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.

plbaMaxResults :: Lens' PeopleListByActivity Word32 Source #

The maximum number of people to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.