Module GapiDriveV2Service.RepliesResource

module RepliesResource: sig .. end

val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
replyId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Deletes a reply.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
fileId : The ID of the file.
commentId : The ID of the comment.
replyId : The ID of the reply.
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
?includeDeleted:bool ->
fileId:string ->
commentId:string ->
replyId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.CommentReply.t * GapiConversation.Session.t
Gets a reply.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
includeDeleted : If set, this will succeed when retrieving a deleted reply.
fileId : The ID of the file.
commentId : The ID of the comment.
replyId : The ID of the reply.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
GapiDriveV2Model.CommentReply.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.CommentReply.t * GapiConversation.Session.t
Creates a new reply to the given comment.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
fileId : The ID of the file.
commentId : The ID of the comment.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?includeDeleted:bool ->
?maxResults:int ->
?pageToken:string ->
fileId:string ->
commentId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.CommentReplyList.t * GapiConversation.Session.t
Lists all of the replies to a comment.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
includeDeleted : If set, all replies, including deleted replies (with content stripped) will be returned.
maxResults : The maximum number of replies to include in the response, used for paging.
pageToken : The continuation token, 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.
fileId : The ID of the file.
commentId : The ID of the comment.
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
replyId:string ->
GapiDriveV2Model.CommentReply.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.CommentReply.t * GapiConversation.Session.t
Updates an existing reply. This method supports patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
fileId : The ID of the file.
commentId : The ID of the comment.
replyId : The ID of the reply.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
replyId:string ->
GapiDriveV2Model.CommentReply.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.CommentReply.t * GapiConversation.Session.t
Updates an existing reply.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
fileId : The ID of the file.
commentId : The ID of the comment.
replyId : The ID of the reply.