package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 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.

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