Module GapiDriveV3Model.ChangeList

module ChangeList: sig .. end

type t = {
   changes : GapiDriveV3Model.Change.t list; (*
The page of changes.
*)
   kind : string; (*
Identifies what kind of resource this is. Value: the fixed string "drive#changeList".
*)
   newStartPageToken : string; (*
The starting page token for future changes. This will be present only if the end of the current changes list has been reached.
*)
   nextPageToken : string; (*
The page token for the next page of changes. This will be absent if the end of the current changes list has been reached.
*)
}
val changes : (t, GapiDriveV3Model.Change.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val newStartPageToken : (t, string) GapiLens.t
val nextPageToken : (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