package gapi-ocaml
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=e189067f3caf58235eee7f3f1b0f051d0192cd012e444c87492b2b502ad7c29c
md5=0f0c17b713f86d91d6be8ddf4a741745
doc/gapi-ocaml/GapiDriveV3Model/Comment/index.html
Module GapiDriveV3Model.CommentSource
type t = {id : string;(*Output only. The ID of the comment.
*)kind : string;(*Output only. Identifies what kind of resource this is. Value: the fixed string `"drive#comment"`.
*)createdTime : GapiDate.t;(*The time at which the comment was created (RFC 3339 date-time).
*)modifiedTime : GapiDate.t;(*The last time the comment or any of its replies was modified (RFC 3339 date-time).
*)resolved : bool;(*Output only. Whether the comment has been resolved by one of its replies.
*)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).
*)replies : Reply.t list;(*Output only. The full list of replies to the comment in chronological order.
*)deleted : bool;(*Output only. Whether the comment has been deleted. A deleted comment has no content.
*)htmlContent : string;(*Output only. The content of the comment with HTML formatting.
*)content : string;(*The plain text content of the comment. This field is used for setting the content, while `htmlContent` should be displayed.
*)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.
*)
}