package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. accountId : string;
    (*

    Account ID.

    *)
  2. active : bool;
    (*

    Boolean indicating whether the custom dimension is active.

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

    Time the custom dimension was created.

    *)
  4. id : string;
    (*

    Custom dimension ID.

    *)
  5. index : int;
    (*

    Index of the custom dimension.

    *)
  6. kind : string;
    (*

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

    *)
  7. name : string;
    (*

    Name of the custom dimension.

    *)
  8. scope : string;
    (*

    Scope of the custom dimension: HIT, SESSION, USER or PRODUCT.

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

    Time the custom dimension was last modified.

    *)
  10. webPropertyId : string;
    (*

    Property ID.

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