module Reply:sig..end
type t = {
|
action : |
(* |
The action the reply performed to the parent comment. Valid values are:
| *) |
|
: |
(* |
The user who created the reply.
| *) |
|
content : |
(* |
The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.
| *) |
|
createdTime : |
(* |
The time at which the reply was created (RFC 3339 date-time).
| *) |
|
deleted : |
(* |
Whether the reply has been deleted. A deleted reply has no content.
| *) |
|
htmlContent : |
(* |
The content of the reply with HTML formatting.
| *) |
|
id : |
(* |
The ID of the reply.
| *) |
|
kind : |
(* |
Identifies what kind of resource this is. Value: the fixed string "drive#reply".
| *) |
|
modifiedTime : |
(* |
The last time the reply was modified (RFC 3339 date-time).
| *) |
val action : (t, string) GapiLens.t
: (t, GapiDriveV3Model.User.t) GapiLens.t
val content : (t, string) GapiLens.t
val createdTime : (t, GapiDate.t) GapiLens.t
val deleted : (t, bool) GapiLens.t
val htmlContent : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val modifiedTime : (t, GapiDate.t) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t