Module GapiBloggerV2Service.CommentsResource

module CommentsResource: sig .. end

val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
blogId:string ->
postId:string ->
commentId:string ->
GapiConversation.Session.t ->
GapiBloggerV2Model.Comment.t * GapiConversation.Session.t
Gets one comment by id.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/blogger/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
blogId : ID of the blog to containing the comment.
postId : ID of the post to fetch posts from.
commentId : The ID of the comment to get.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?fetchBodies:bool ->
?maxResults:int ->
?pageToken:string ->
?startDate:GapiDate.t ->
blogId:string ->
postId:string ->
GapiConversation.Session.t ->
GapiBloggerV2Model.CommentList.t * GapiConversation.Session.t
Retrieves the comments for a blog, possibly filtered.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/blogger/v2/").
std_params : Optional standard parameters.
fetchBodies : Whether the body content of the comments is included.
maxResults : Maximum number of comments to include in the result.
pageToken : Continuation token if request is paged.
startDate : Earliest date of comment to fetch, a date-time with RFC 3339 formatting.
blogId : ID of the blog to fetch comments from.
postId : ID of the post to fetch posts from.