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 view (profile) belongs.

    *)
  2. botFilteringEnabled : bool;
    (*

    Indicates whether bot filtering is enabled for this view (profile).

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

    Time this view (profile) was created.

    *)
  4. currency : string;
    (*

    The currency type associated with this view (profile), defaults to USD. The supported values are: USD, JPY, EUR, GBP, AUD, KRW, BRL, CNY, DKK, RUB, SEK, NOK, PLN, TRY, TWD, HKD, THB, IDR, ARS, MXN, VND, PHP, INR, CHF, CAD, CZK, NZD, HUF, BGN, LTL, ZAR, UAH, AED, BOB, CLP, COP, EGP, HRK, ILS, MAD, MYR, PEN, PKR, RON, RSD, SAR, SGD, VEF, LVL

    *)
  5. defaultPage : string;
    (*

    Default page for this view (profile).

    *)
  6. eCommerceTracking : bool;
    (*

    Indicates whether ecommerce tracking is enabled for this view (profile).

    *)
  7. enhancedECommerceTracking : bool;
    (*

    Indicates whether enhanced ecommerce tracking is enabled for this view (profile). This property can only be enabled if ecommerce tracking is enabled.

    *)
  8. excludeQueryParameters : string;
    (*

    The query parameters that are excluded from this view (profile).

    *)
  9. id : string;
    (*

    View (Profile) ID.

    *)
  10. internalWebPropertyId : string;
    (*

    Internal ID for the web property to which this view (profile) belongs.

    *)
  11. kind : string;
    (*

    Resource type for Analytics view (profile).

    *)
  12. name : string;
    (*

    Name of this view (profile).

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

    Permissions the user has for this view (profile).

    *)
  14. siteSearchCategoryParameters : string;
    (*

    Site search category parameters for this view (profile).

    *)
  15. siteSearchQueryParameters : string;
    (*

    The site search query parameters for this view (profile).

    *)
  16. starred : bool;
    (*

    Indicates whether this view (profile) is starred or not.

    *)
  17. stripSiteSearchCategoryParameters : bool;
    (*

    Whether or not Analytics will strip search category parameters from the URLs in your reports.

    *)
  18. stripSiteSearchQueryParameters : bool;
    (*

    Whether or not Analytics will strip search query parameters from the URLs in your reports.

    *)
  19. timezone : string;
    (*

    Time zone for which this view (profile) has been configured. Time zones are identified by strings from the TZ database.

    *)
  20. _type : string;
    (*

    View (Profile) type. Supported types: WEB or APP.

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

    Time this view (profile) was last modified.

    *)
  22. webPropertyId : string;
    (*

    Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.

    *)
  23. websiteUrl : string;
    (*

    Website URL for this view (profile).

    *)
}
val accountId : (t, string) GapiLens.t
val botFilteringEnabled : (t, bool) GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val currency : (t, string) GapiLens.t
val defaultPage : (t, string) GapiLens.t
val eCommerceTracking : (t, bool) GapiLens.t
val enhancedECommerceTracking : (t, bool) GapiLens.t
val excludeQueryParameters : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val internalWebPropertyId : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val permissions : (t, Permissions.t) GapiLens.t
val siteSearchCategoryParameters : (t, string) GapiLens.t
val siteSearchQueryParameters : (t, string) GapiLens.t
val starred : (t, bool) GapiLens.t
val stripSiteSearchCategoryParameters : (t, bool) GapiLens.t
val stripSiteSearchQueryParameters : (t, bool) GapiLens.t
val timezone : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val updated : (t, GapiDate.t) GapiLens.t
val webPropertyId : (t, string) 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