module Change:sig..end
type t = {
|
deleted : |
(* |
Whether the file has been deleted.
| *) |
|
file : |
(* |
The updated state of the file. Present if the file has not been deleted.
| *) |
|
fileId : |
(* |
The ID of the file associated with this change.
| *) |
|
id : |
(* |
The ID of the change.
| *) |
|
kind : |
(* |
This is always drive#change.
| *) |
|
modificationDate : |
(* |
The time of this modification.
| *) |
|
selfLink : |
(* |
A link back to this change.
| *) |
val deleted : (t, bool) GapiLens.t
val file : (t, GapiDriveV2Model.File.t) GapiLens.t
val fileId : (t, string) GapiLens.t
val id : (t, int64) GapiLens.t
val kind : (t, string) GapiLens.t
val modificationDate : (t, GapiDate.t) GapiLens.t
val selfLink : (t, string) 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