Module GapiAnalyticsV3Model.Profile

module Profile: sig .. end

module Permissions: sig .. end
module ParentLink: sig .. end
module ChildLink: sig .. end
type t = {
   accountId : string; (*
Account ID to which this view (profile) belongs.
*)
   childLink : ChildLink.t; (*
Child link for this view (profile). Points to the list of goals for this view (profile).
*)
   created : GapiDate.t; (*
Time this view (profile) was created.
*)
   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
*)
   defaultPage : string; (*
Default page for this view (profile).
*)
   eCommerceTracking : bool; (*
Indicates whether ecommerce tracking is enabled for this view (profile).
*)
   enhancedECommerceTracking : bool; (*
Indicates whether enhanced ecommerce tracking is enabled for this view (profile). This property can only be enabled if ecommerce tracking is enabled.
*)
   excludeQueryParameters : string; (*
The query parameters that are excluded from this view (profile).
*)
   id : string; (*
View (Profile) ID.
*)
   internalWebPropertyId : string; (*
Internal ID for the web property to which this view (profile) belongs.
*)
   kind : string; (*
Resource type for Analytics view (profile).
*)
   name : string; (*
Name of this view (profile).
*)
   parentLink : ParentLink.t; (*
Parent link for this view (profile). Points to the web property to which this view (profile) belongs.
*)
   permissions : Permissions.t; (*
Permissions the user has for this view (profile).
*)
   selfLink : string; (*
Link for this view (profile).
*)
   siteSearchCategoryParameters : string; (*
Site search category parameters for this view (profile).
*)
   siteSearchQueryParameters : string; (*
The site search query parameters for this view (profile).
*)
   stripSiteSearchCategoryParameters : bool; (*
Whether or not Analytics will strip search category parameters from the URLs in your reports.
*)
   stripSiteSearchQueryParameters : bool; (*
Whether or not Analytics will strip search query parameters from the URLs in your reports.
*)
   timezone : string; (*
Time zone for which this view (profile) has been configured. Time zones are identified by strings from the TZ database.
*)
   _type : string; (*
View (Profile) type. Supported types: WEB or APP.
*)
   updated : GapiDate.t; (*
Time this view (profile) was last modified.
*)
   webPropertyId : string; (*
Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
*)
   websiteUrl : string; (*
Website URL for this view (profile).
*)
}
val accountId : (t, string) GapiLens.t
val childLink : (t, ChildLink.t)
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 parentLink : (t, ParentLink.t)
GapiLens.t
val permissions : (t, Permissions.t)
GapiLens.t
val selfLink : (t, string) 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