module RepliesResource: sig .. end
val create : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
GapiDriveV3Model.Reply.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.Reply.t * GapiConversation.Session.t
Creates a new reply to a comment.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
fileId : The ID of the file.
commentId : The ID of the comment.
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/v3/").
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 ->
GapiDriveV3Model.Reply.t * GapiConversation.Session.t
Gets a reply by ID.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
etag : Optional ETag.
std_params : Optional standard parameters.
includeDeleted : Whether to return deleted replies. Deleted replies will not include their original content.
fileId : The ID of the file.
commentId : The ID of the comment.
replyId : The ID of the reply.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?includeDeleted:bool ->
?pageSize:int ->
?pageToken:string ->
fileId:string ->
commentId:string ->
GapiConversation.Session.t ->
GapiDriveV3Model.ReplyList.t * GapiConversation.Session.t
Lists a comment's replies.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
includeDeleted : Whether to include deleted replies. Deleted replies will not include their original content.
pageSize : The maximum number of replies to return per page.
pageToken : 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.
fileId : The ID of the file.
commentId : The ID of the comment.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
replyId:string ->
GapiDriveV3Model.Reply.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.Reply.t * GapiConversation.Session.t
Updates a reply with patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
fileId : The ID of the file.
commentId : The ID of the comment.
replyId : The ID of the reply.