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