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.
selfLink : string;A link back to this list.
}
val etag : (t, string) GapiLens.tval items : (t, Revision.t list) GapiLens.tval kind : (t, string) GapiLens.tval nextPageToken : (t, string) GapiLens.tval selfLink : (t, string) GapiLens.tval empty : tval render : t -> GapiJson.json_data_model listval parse : t -> GapiJson.json_data_model -> tval to_data_model : t -> GapiJson.json_data_modelval of_data_model : GapiJson.json_data_model -> t