package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
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/v2/").

  • 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 -> GapiDriveV2Model.CommentReply.t * GapiConversation.Session.t

Gets a reply.

  • parameter base_url

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

  • parameter etag

    Optional ETag.

  • parameter std_params

    Optional standard parameters.

  • parameter includeDeleted

    If set, this will succeed when retrieving a deleted reply.

  • parameter fileId

    The ID of the file.

  • parameter commentId

    The ID of the comment.

  • parameter replyId

    The ID of the reply.

Creates a new reply to the given comment.

  • parameter base_url

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

  • parameter std_params

    Optional standard parameters.

  • parameter fileId

    The ID of the file.

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

  • parameter base_url

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

  • parameter std_params

    Optional standard parameters.

  • parameter includeDeleted

    If set, all replies, including deleted replies (with content stripped) will be returned.

  • parameter maxResults

    The maximum number of replies to include in the response, used for paging.

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

  • parameter fileId

    The ID of the file.

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

  • parameter base_url

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

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

  • parameter base_url

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

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