gogol-drive-0.3.0: Google Drive 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.Drive.Replies.List

Contents

Description

Lists a comment's replies.

See: Drive API Reference for drive.replies.list.

Synopsis

REST Resource

type RepliesListResource = "drive" :> ("v3" :> ("files" :> (Capture "fileId" Text :> ("comments" :> (Capture "commentId" Text :> ("replies" :> (QueryParam "pageToken" Text :> (QueryParam "pageSize" (Textual Int32) :> (QueryParam "includeDeleted" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] ReplyList)))))))))) Source #

A resource alias for drive.replies.list method which the RepliesList request conforms to.

Creating a Request

repliesList Source #

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

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

data RepliesList Source #

Lists a comment's replies.

See: repliesList smart constructor.

Instances

Eq RepliesList Source # 
Data RepliesList Source # 

Methods

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

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

toConstr :: RepliesList -> Constr #

dataTypeOf :: RepliesList -> DataType #

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

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

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

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

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

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

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

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

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

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

Show RepliesList Source # 
Generic RepliesList Source # 

Associated Types

type Rep RepliesList :: * -> * #

GoogleRequest RepliesList Source # 

Associated Types

type Rs RepliesList :: * #

type Scopes RepliesList :: [Symbol] #

type Rep RepliesList Source # 
type Rep RepliesList = D1 (MetaData "RepliesList" "Network.Google.Resource.Drive.Replies.List" "gogol-drive-0.3.0-HPclvxcWpgG8piXpdkWWOb" False) (C1 (MetaCons "RepliesList'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_rlPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_rlFileId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))) ((:*:) (S1 (MetaSel (Just Symbol "_rlCommentId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_rlPageSize") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Textual Int32))) (S1 (MetaSel (Just Symbol "_rlIncludeDeleted") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Bool))))))
type Scopes RepliesList Source # 
type Scopes RepliesList = (:) Symbol "https://www.googleapis.com/auth/drive" ((:) Symbol "https://www.googleapis.com/auth/drive.file" ((:) Symbol "https://www.googleapis.com/auth/drive.readonly" ([] Symbol)))
type Rs RepliesList Source # 

Request Lenses

rlPageToken :: Lens' RepliesList (Maybe Text) Source #

The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.

rlFileId :: Lens' RepliesList Text Source #

The ID of the file.

rlCommentId :: Lens' RepliesList Text Source #

The ID of the comment.

rlPageSize :: Lens' RepliesList Int32 Source #

The maximum number of replies to return per page.

rlIncludeDeleted :: Lens' RepliesList Bool Source #

Whether to include deleted replies. Deleted replies will not include their original content.