module CommentsResource: sig .. end
val create : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
GapiDriveV3Model.Comment.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.Comment.t * GapiConversation.Session.t
Creates a new comment on a file.
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.
val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Deletes 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 get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
?includeDeleted:bool ->
fileId:string ->
commentId:string ->
GapiConversation.Session.t ->
GapiDriveV3Model.Comment.t * GapiConversation.Session.t
Gets a comment 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 comments. Deleted comments will not include their original content.
fileId : The ID of the file.
commentId : The ID of the comment.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?includeDeleted:bool ->
?pageSize:int ->
?pageToken:string ->
?startModifiedTime:string ->
fileId:string ->
GapiConversation.Session.t ->
GapiDriveV3Model.CommentList.t * GapiConversation.Session.t
Lists a file's comments.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
includeDeleted : Whether to include deleted comments. Deleted comments will not include their original content.
pageSize : The maximum number of comments 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.
startModifiedTime : The minimum value of 'modifiedTime' for the result comments (RFC 3339 date-time).
fileId : The ID of the file.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
commentId:string ->
GapiDriveV3Model.Comment.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.Comment.t * GapiConversation.Session.t
Updates a comment 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.