gogol-blogger-0.3.0: Google Blogger 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.Blogger.BlogUserInfos.Get

Contents

Description

Gets one blog and user info pair by blogId and userId.

See: Blogger API Reference for blogger.blogUserInfos.get.

Synopsis

REST Resource

type BlogUserInfosGetResource = "blogger" :> ("v3" :> ("users" :> (Capture "userId" Text :> ("blogs" :> (Capture "blogId" Text :> (QueryParam "maxPosts" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] BlogUserInfo))))))) Source #

A resource alias for blogger.blogUserInfos.get method which the BlogUserInfosGet request conforms to.

Creating a Request

blogUserInfosGet Source #

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

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

data BlogUserInfosGet Source #

Gets one blog and user info pair by blogId and userId.

See: blogUserInfosGet smart constructor.

Instances

Eq BlogUserInfosGet Source # 
Data BlogUserInfosGet Source # 

Methods

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

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

toConstr :: BlogUserInfosGet -> Constr #

dataTypeOf :: BlogUserInfosGet -> DataType #

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

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

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

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

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

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

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

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

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

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

Show BlogUserInfosGet Source # 
Generic BlogUserInfosGet Source # 
GoogleRequest BlogUserInfosGet Source # 
type Rep BlogUserInfosGet Source # 
type Rep BlogUserInfosGet = D1 (MetaData "BlogUserInfosGet" "Network.Google.Resource.Blogger.BlogUserInfos.Get" "gogol-blogger-0.3.0-BS58SVsiFJLCdRODXPa5ak" False) (C1 (MetaCons "BlogUserInfosGet'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_buigBlogId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_buigUserId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_buigMaxPosts") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Word32)))))))
type Scopes BlogUserInfosGet Source # 
type Scopes BlogUserInfosGet = (:) Symbol "https://www.googleapis.com/auth/blogger" ((:) Symbol "https://www.googleapis.com/auth/blogger.readonly" ([] Symbol))
type Rs BlogUserInfosGet Source # 

Request Lenses

buigBlogId :: Lens' BlogUserInfosGet Text Source #

The ID of the blog to get.

buigUserId :: Lens' BlogUserInfosGet Text Source #

ID of the user whose blogs are to be fetched. Either the word 'self' (sans quote marks) or the user's profile identifier.

buigMaxPosts :: Lens' BlogUserInfosGet (Maybe Word32) Source #

Maximum number of posts to pull back with the blog.