Module GapiAnalyticsV3Model.Account

module Account: sig .. end

module Permissions: sig .. end
module ChildLink: sig .. end
type t = {
   childLink : ChildLink.t; (*
Child link for an account entry. Points to the list of web properties for this account.
*)
   created : GapiDate.t; (*
Time the account was created.
*)
   id : string; (*
Account ID.
*)
   kind : string; (*
Resource type for Analytics account.
*)
   name : string; (*
Account name.
*)
   permissions : Permissions.t; (*
Permissions the user has for this account.
*)
   selfLink : string; (*
Link for this account.
*)
   updated : GapiDate.t; (*
Time the account was last modified.
*)
}
val childLink : (t, ChildLink.t)
GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val permissions : (t, Permissions.t)
GapiLens.t
val selfLink : (t, string) GapiLens.t
val updated : (t, GapiDate.t) 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