Copyright | (c) 2015-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Gets a reply by ID.
See: Drive API Reference for drive.replies.get
.
Synopsis
- type RepliesGetResource = "drive" :> ("v3" :> ("files" :> (Capture "fileId" Text :> ("comments" :> (Capture "commentId" Text :> ("replies" :> (Capture "replyId" Text :> (QueryParam "includeDeleted" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] Reply)))))))))
- repliesGet :: Text -> Text -> Text -> RepliesGet
- data RepliesGet
- rgReplyId :: Lens' RepliesGet Text
- rgFileId :: Lens' RepliesGet Text
- rgCommentId :: Lens' RepliesGet Text
- rgIncludeDeleted :: Lens' RepliesGet Bool
REST Resource
type RepliesGetResource = "drive" :> ("v3" :> ("files" :> (Capture "fileId" Text :> ("comments" :> (Capture "commentId" Text :> ("replies" :> (Capture "replyId" Text :> (QueryParam "includeDeleted" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] Reply))))))))) Source #
A resource alias for drive.replies.get
method which the
RepliesGet
request conforms to.
Creating a Request
Creates a value of RepliesGet
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data RepliesGet Source #
Gets a reply by ID.
See: repliesGet
smart constructor.
Instances
Request Lenses
rgCommentId :: Lens' RepliesGet Text Source #
The ID of the comment.
rgIncludeDeleted :: Lens' RepliesGet Bool Source #
Whether to return deleted replies. Deleted replies will not include their original content.