package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. defaultAppIds : string list;
    (*

    List of app IDs that the user has specified to use by default. The list is in reverse-priority order (lowest to highest).

    *)
  2. etag : string;
    (*

    The ETag of the list.

    *)
  3. items : App.t list;
    (*

    The actual list of apps.

    *)
  4. kind : string;
    (*

    This is always drive#appList.

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