Module GapiAnalyticsV3Model.Account

module Permissions : sig ... end
type t = {
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.

*)
starred : bool;(*

Indicates whether this account is starred or not.

*)
updated : GapiDate.t;(*

Time the account was last modified.

*)
}
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 starred : ( t, bool ) 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