Module GapiPlusV1Service.CommentsResource

module CommentsResource: sig .. end

module SortOrder: sig .. end
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
commentId:string ->
GapiConversation.Session.t ->
GapiPlusV1Model.Comment.t * GapiConversation.Session.t
Get a comment.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
etag : Optional ETag.
std_params : Optional standard parameters.
commentId : The ID of the comment to get.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?sortOrder:SortOrder.t ->
?pageToken:string ->
activityId:string ->
GapiConversation.Session.t ->
GapiPlusV1Model.CommentFeed.t * GapiConversation.Session.t
List all of the comments for an activity.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
std_params : Optional standard parameters.
maxResults : The maximum number of comments to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.
sortOrder : The order in which to sort the list of comments.
pageToken : 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.
activityId : The ID of the activity to get comments for.