Module GapiDriveV2Model.RevisionList

type t = {
etag : string;

The ETag of the list.

items : Revision.t list;

The actual list of revisions.

kind : string;

This is always drive#revisionList.

nextPageToken : string;

The page token for the next page of revisions. This field will be absent if the end of the revisions list has been reached. If the token is rejected for any reason, it should be discarded and pagination should be restarted from the first page of results.

}
val etag : (t, string) GapiLens.t
val items : (tRevision.t list) GapiLens.t
val kind : (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