package gapi-ocaml

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

    Account ID to which this web property belongs.

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

    Time this web property was created.

    *)
  3. defaultProfileId : int64;
    (*

    Default view (profile) ID.

    *)
  4. id : string;
    (*

    Web property ID of the form UA-XXXXX-YY.

    *)
  5. industryVertical : string;
    (*

    The industry vertical/category selected for this web property.

    *)
  6. internalWebPropertyId : string;
    (*

    Internal ID for this web property.

    *)
  7. kind : string;
    (*

    Resource type for Analytics WebProperty.

    *)
  8. level : string;
    (*

    Level for this web property. Possible values are STANDARD or PREMIUM.

    *)
  9. name : string;
    (*

    Name of this web property.

    *)
  10. permissions : Permissions.t;
    (*

    Permissions the user has for this web property.

    *)
  11. profileCount : int;
    (*

    View (Profile) count for this web property.

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

    Time this web property was last modified.

    *)
  13. websiteUrl : string;
    (*

    Website url for this web property.

    *)
}
val accountId : (t, string) GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val defaultProfileId : (t, int64) GapiLens.t
val id : (t, string) GapiLens.t
val industryVertical : (t, string) GapiLens.t
val internalWebPropertyId : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val level : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val permissions : (t, Permissions.t) GapiLens.t
val profileCount : (t, int) GapiLens.t
val updated : (t, GapiDate.t) GapiLens.t
val websiteUrl : (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