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. created : GapiDate.t;
    (*

    Time this view (profile) was created.

    *)
  3. currency : string;
    (*

    The currency type associated with this view (profile), defaults to USD. The supported values are: ARS, AUD, BGN, BRL, CAD, CHF, CNY, CZK, DKK, EUR, GBP, HKD, HUF, IDR, INR, JPY, KRW, LTL, MXN, NOK, NZD, PHP, PLN, RUB, SEK, THB, TRY, TWD, USD, VND, ZAR

    *)
  4. defaultPage : string;
    (*

    Default page for this view (profile).

    *)
  5. eCommerceTracking : bool;
    (*

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

    *)
  6. enhancedECommerceTracking : bool;
    (*

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

    *)
  7. excludeQueryParameters : string;
    (*

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

    *)
  8. id : string;
    (*

    View (Profile) ID.

    *)
  9. internalWebPropertyId : string;
    (*

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

    *)
  10. kind : string;
    (*

    Resource type for Analytics view (profile).

    *)
  11. name : string;
    (*

    Name of this view (profile).

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

    Permissions the user has for this view (profile).

    *)
  13. siteSearchCategoryParameters : string;
    (*

    Site search category parameters for this view (profile).

    *)
  14. siteSearchQueryParameters : string;
    (*

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

    *)
  15. stripSiteSearchCategoryParameters : bool;
    (*

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

    *)
  16. stripSiteSearchQueryParameters : bool;
    (*

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

    *)
  17. timezone : string;
    (*

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

    *)
  18. _type : string;
    (*

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

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

    Time this view (profile) was last modified.

    *)
  20. webPropertyId : string;
    (*

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

    *)
  21. websiteUrl : string;
    (*

    Website URL for this view (profile).

    *)
}
val accountId : (t, string) 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 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