package gapi-ocaml

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

Module GapiAdsenseV1_4Model.ReportingMetadataEntrySource

Sourcetype t = {
  1. compatibleDimensions : string list;
    (*

    For metrics this is a list of dimension IDs which the metric is compatible with, for dimensions it is a list of compatibility groups the dimension belongs to.

    *)
  2. compatibleMetrics : string list;
    (*

    The names of the metrics the dimension or metric this reporting metadata entry describes is compatible with.

    *)
  3. id : string;
    (*

    Unique identifier of this reporting metadata entry, corresponding to the name of the appropriate dimension or metric.

    *)
  4. kind : string;
    (*

    Kind of resource this is, in this case adsense#reportingMetadataEntry.

    *)
  5. requiredDimensions : string list;
    (*

    The names of the dimensions which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted.

    *)
  6. requiredMetrics : string list;
    (*

    The names of the metrics which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted.

    *)
  7. supportedProducts : string list;
    (*

    The codes of the projects supported by the dimension or metric this reporting metadata entry describes.

    *)
}
Sourceval compatibleDimensions : (t, string list) GapiLens.t
Sourceval compatibleMetrics : (t, string list) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval requiredDimensions : (t, string list) GapiLens.t
Sourceval requiredMetrics : (t, string list) GapiLens.t
Sourceval supportedProducts : (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