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