package gapi-ocaml

  1. Overview
  2. Docs
A simple OCaml client for Google Services

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.4.9.tar.gz
sha256=e189067f3caf58235eee7f3f1b0f051d0192cd012e444c87492b2b502ad7c29c
md5=0f0c17b713f86d91d6be8ddf4a741745

doc/gapi-ocaml/GapiDriveV3Model/Comment/index.html

Module GapiDriveV3Model.CommentSource

Sourcemodule QuotedFileContent : sig ... end
Sourcetype t = {
  1. id : string;
    (*

    Output only. The ID of the comment.

    *)
  2. kind : string;
    (*

    Output only. Identifies what kind of resource this is. Value: the fixed string `"drive#comment"`.

    *)
  3. createdTime : GapiDate.t;
    (*

    The time at which the comment was created (RFC 3339 date-time).

    *)
  4. modifiedTime : GapiDate.t;
    (*

    The last time the comment or any of its replies was modified (RFC 3339 date-time).

    *)
  5. resolved : bool;
    (*

    Output only. Whether the comment has been resolved by one of its replies.

    *)
  6. anchor : string;
    (*

    A region of the document represented as a JSON string. For details on defining anchor properties, refer to [Manage comments and replies](https://developers.google.com/workspace/drive/api/v3/manage-comments).

    *)
  7. replies : Reply.t list;
    (*

    Output only. The full list of replies to the comment in chronological order.

    *)
  8. author : User.t;
    (*

    Output only. The author of the comment. The author's email address and permission ID will not be populated.

    *)
  9. deleted : bool;
    (*

    Output only. Whether the comment has been deleted. A deleted comment has no content.

    *)
  10. htmlContent : string;
    (*

    Output only. The content of the comment with HTML formatting.

    *)
  11. content : string;
    (*

    The plain text content of the comment. This field is used for setting the content, while `htmlContent` should be displayed.

    *)
  12. quotedFileContent : QuotedFileContent.t;
    (*

    The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment.

    *)
}
Sourceval id : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval createdTime : (t, GapiDate.t) GapiLens.t
Sourceval modifiedTime : (t, GapiDate.t) GapiLens.t
Sourceval resolved : (t, bool) GapiLens.t
Sourceval anchor : (t, string) GapiLens.t
Sourceval replies : (t, Reply.t list) GapiLens.t
Sourceval author : (t, User.t) GapiLens.t
Sourceval deleted : (t, bool) GapiLens.t
Sourceval htmlContent : (t, string) GapiLens.t
Sourceval content : (t, string) GapiLens.t
Sourceval quotedFileContent : (t, QuotedFileContent.t) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t