Module GapiDriveV3Service.RepliesResource

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.

parameter base_url

Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

parameter std_params

Optional standard parameters.

parameter fileId

The ID of the file.

parameter 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.

parameter base_url

Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

parameter std_params

Optional standard parameters.

parameter fileId

The ID of the file.

parameter commentId

The ID of the comment.

parameter 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.

parameter base_url

Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

parameter etag

Optional ETag.

parameter std_params

Optional standard parameters.

parameter includeDeleted

Whether to return deleted replies. Deleted replies will not include their original content.

parameter fileId

The ID of the file.

parameter commentId

The ID of the comment.

parameter 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.

parameter base_url

Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

parameter std_params

Optional standard parameters.

parameter includeDeleted

Whether to include deleted replies. Deleted replies will not include their original content.

parameter pageSize

The maximum number of replies to return per page.

parameter 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.

parameter fileId

The ID of the file.

parameter 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.

parameter base_url

Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

parameter std_params

Optional standard parameters.

parameter fileId

The ID of the file.

parameter commentId

The ID of the comment.

parameter replyId

The ID of the reply.