Module GapiAnalyticsV3Model.Webproperty

module Webproperty: sig .. end

module Permissions: sig .. end
module ParentLink: sig .. end
module ChildLink: sig .. end
type t = {
   accountId : string; (*
Account ID to which this web property belongs.
*)
   childLink : ChildLink.t; (*
Child link for this web property. Points to the list of views (profiles) for this web property.
*)
   created : GapiDate.t; (*
Time this web property was created.
*)
   defaultProfileId : int64; (*
Default view (profile) ID.
*)
   id : string; (*
Web property ID of the form UA-XXXXX-YY.
*)
   industryVertical : string; (*
The industry vertical/category selected for this web property.
*)
   internalWebPropertyId : string; (*
Internal ID for this web property.
*)
   kind : string; (*
Resource type for Analytics WebProperty.
*)
   level : string; (*
Level for this web property. Possible values are STANDARD or PREMIUM.
*)
   name : string; (*
Name of this web property.
*)
   parentLink : ParentLink.t; (*
Parent link for this web property. Points to the account to which this web property belongs.
*)
   permissions : Permissions.t; (*
Permissions the user has for this web property.
*)
   profileCount : int; (*
View (Profile) count for this web property.
*)
   selfLink : string; (*
Link for this web property.
*)
   updated : GapiDate.t; (*
Time this web property was last modified.
*)
   websiteUrl : string; (*
Website url for this web property.
*)
}
val accountId : (t, string) GapiLens.t
val childLink : (t,
ChildLink.t)
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 parentLink : (t,
ParentLink.t)
GapiLens.t
val permissions : (t,
Permissions.t)
GapiLens.t
val profileCount : (t, int) GapiLens.t
val selfLink : (t, string) 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