module Columns:sig..end
type t = {
|
attributeNames : |
(* |
List of attributes names returned by columns.
| *) |
|
etag : |
(* |
Etag of collection. This etag can be compared with the last response etag to check if response has changed.
| *) |
|
items : |
(* |
List of columns for a report type.
| *) |
|
kind : |
(* |
Collection type.
| *) |
|
totalResults : |
(* |
Total number of columns returned in the response.
| *) |
val attributeNames : (t, string list) GapiLens.t
val etag : (t, string) GapiLens.t
val items : (t, GapiAnalyticsV3Model.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