Module GapiAnalyticsV3Model.Columns

type t = {
attributeNames : string list;(*

List of attributes names returned by columns.

*)
etag : string;(*

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

*)
items : Column.t list;(*

List of columns for a report type.

*)
kind : string;(*

Collection type.

*)
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