package gapi-ocaml

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

    List of attributes names returned by columns.

    *)
  2. etag : string;
    (*

    Etag of collection. This etag can be compared with the last response etag to check if response has changed.

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

    List of columns for a report type.

    *)
  4. kind : string;
    (*

    Collection type.

    *)
  5. totalResults : int;
    (*

    Total number of columns returned in the response.

    *)
}
val attributeNames : (t, string list) GapiLens.t
val etag : (t, string) GapiLens.t
val items : (t, Column.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val totalResults : (t, int) 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