Module GapiAnalyticsV3Model.McfData

module Rows : sig ... end
module Query : sig ... end
module ProfileInfo : sig ... end
module ColumnHeaders : sig ... end
type t = {
columnHeaders : ColumnHeaders.t list;

Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request.

containsSampledData : bool;

Determines if the Analytics data contains sampled data.

id : string;

Unique ID for this data response.

itemsPerPage : int;

The maximum number of rows the response can contain, regardless of the actual number of rows returned. Its value ranges from 1 to 10,000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.

kind : string;

Resource type.

profileInfo : ProfileInfo.t;

Information for the view (profile), for which the Analytics data was requested.

query : Query.t;

Analytics data request query parameters.

rows : Rows.t list list;

Analytics data rows, where each row contains a list of dimension values followed by the metric values. The order of dimensions and metrics is same as specified in the request.

sampleSize : int64;

The number of samples used to calculate the result.

sampleSpace : int64;

Total size of the sample space from which the samples were selected.

totalResults : int;

The total number of rows for the query, regardless of the number of rows in the response.

totalsForAllResults : (string * string) list;

Total values for the requested metrics over all the results, not just the results returned in this response. The order of the metric totals is same as the metric order specified in the request.

}
val columnHeaders : (tColumnHeaders.t list) GapiLens.t
val containsSampledData : (t, bool) GapiLens.t
val id : (t, string) GapiLens.t
val itemsPerPage : (t, int) GapiLens.t
val kind : (t, string) GapiLens.t
val profileInfo : (tProfileInfo.t) GapiLens.t
val query : (tQuery.t) GapiLens.t
val rows : (tRows.t list list) GapiLens.t
val sampleSize : (t, int64) GapiLens.t
val sampleSpace : (t, int64) GapiLens.t
val totalResults : (t, int) GapiLens.t
val totalsForAllResults : (t(string * string) list) 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