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