package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiAdsenseV1_1Model.AdsenseReportsGenerateResponseSource

Sourcemodule Headers : sig ... end
Sourcetype t = {
  1. averages : string list;
    (*

    The averages of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.

    *)
  2. headers : Headers.t list;
    (*

    The header information of the columns requested in the report. This is a list of headers; one for each dimension in the request, followed by one for each metric in the request.

    *)
  3. kind : string;
    (*

    Kind this is, in this case adsense#report.

    *)
  4. rows : string list list;
    (*

    The output rows of the report. Each row is a list of cells; one for each dimension in the request, followed by one for each metric in the request. The dimension cells contain strings, and the metric cells contain numbers.

    *)
  5. totalMatchedRows : int64;
    (*

    The total number of rows matched by the report request. Fewer rows may be returned in the response due to being limited by the row count requested or the report row limit.

    *)
  6. totals : string list;
    (*

    The totals of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.

    *)
  7. warnings : string list;
    (*

    Any warnings associated with generation of the report.

    *)
}
Sourceval averages : (t, string list) GapiLens.t
Sourceval headers : (t, Headers.t list) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval rows : (t, string list list) GapiLens.t
Sourceval totalMatchedRows : (t, int64) GapiLens.t
Sourceval totals : (t, string list) GapiLens.t
Sourceval warnings : (t, string list) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t