gogol-plus-domains-0.2.0: Google + Domains 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.PlusDomains.Circles.List

Contents

Description

List all of the circles for a user.

See: Google+ Domains API Reference for plusDomains.circles.list.

Synopsis

REST Resource

type CirclesListResource = "plusDomains" :> ("v1" :> ("people" :> (Capture "userId" Text :> ("circles" :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] CircleFeed))))))) Source #

A resource alias for plusDomains.circles.list method which the CirclesList request conforms to.

Creating a Request

circlesList Source #

Arguments

:: Text

cUserId

-> CirclesList 

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

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

data CirclesList Source #

List all of the circles for a user.

See: circlesList smart constructor.

Instances

Eq CirclesList Source # 
Data CirclesList Source # 

Methods

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

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

toConstr :: CirclesList -> Constr #

dataTypeOf :: CirclesList -> DataType #

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

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

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

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

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

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

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

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

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

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

Show CirclesList Source # 
Generic CirclesList Source # 

Associated Types

type Rep CirclesList :: * -> * #

GoogleRequest CirclesList Source # 

Associated Types

type Rs CirclesList :: * #

type Scopes CirclesList :: [Symbol] #

type Rep CirclesList Source # 
type Rep CirclesList = D1 (MetaData "CirclesList" "Network.Google.Resource.PlusDomains.Circles.List" "gogol-plus-domains-0.2.0-Exs5GYtIXDF2vBLlrSDHIc" False) (C1 (MetaCons "CirclesList'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_cUserId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_cPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_cMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Textual Word32))))))
type Scopes CirclesList Source # 
type Scopes CirclesList = (:) Symbol "https://www.googleapis.com/auth/plus.circles.read" ((:) Symbol "https://www.googleapis.com/auth/plus.login" ((:) Symbol "https://www.googleapis.com/auth/plus.me" ([] Symbol)))
type Rs CirclesList Source # 

Request Lenses

cUserId :: Lens' CirclesList Text Source #

The ID of the user to get circles for. The special value "me" can be used to indicate the authenticated user.

cPageToken :: Lens' CirclesList (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.

cMaxResults :: Lens' CirclesList Word32 Source #

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