package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. deleted : bool;
    (*

    Whether the file has been deleted.

    *)
  2. file : File.t;
    (*

    The updated state of the file. Present if the file has not been deleted.

    *)
  3. fileId : string;
    (*

    The ID of the file associated with this change.

    *)
  4. id : int64;
    (*

    The ID of the change.

    *)
  5. kind : string;
    (*

    This is always drive#change.

    *)
  6. modificationDate : GapiDate.t;
    (*

    The time of this modification.

    *)
}
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 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