package gapi-ocaml

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

Module GapiAnalyticsV3Model.CustomMetricSource

Sourcetype t = {
  1. accountId : string;
    (*

    Account ID.

    *)
  2. active : bool;
    (*

    Boolean indicating whether the custom metric is active.

    *)
  3. created : GapiDate.t;
    (*

    Time the custom metric was created.

    *)
  4. id : string;
    (*

    Custom metric ID.

    *)
  5. index : int;
    (*

    Index of the custom metric.

    *)
  6. kind : string;
    (*

    Kind value for a custom metric. Set to "analytics#customMetric". It is a read-only field.

    *)
  7. max_value : string;
    (*

    Max value of custom metric.

    *)
  8. min_value : string;
    (*

    Min value of custom metric.

    *)
  9. name : string;
    (*

    Name of the custom metric.

    *)
  10. scope : string;
    (*

    Scope of the custom metric: HIT or PRODUCT.

    *)
  11. _type : string;
    (*

    Data type of custom metric.

    *)
  12. updated : GapiDate.t;
    (*

    Time the custom metric was last modified.

    *)
  13. webPropertyId : string;
    (*

    Property ID.

    *)
}
Sourceval accountId : (t, string) GapiLens.t
Sourceval active : (t, bool) GapiLens.t
Sourceval created : (t, GapiDate.t) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval index : (t, int) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval max_value : (t, string) GapiLens.t
Sourceval min_value : (t, string) GapiLens.t
Sourceval name : (t, string) GapiLens.t
Sourceval scope : (t, string) GapiLens.t
Sourceval _type : (t, string) GapiLens.t
Sourceval updated : (t, GapiDate.t) GapiLens.t
Sourceval webPropertyId : (t, string) 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