GapiAnalyticsV3Model.Accounts
type t = {
items : Account.t list;
A list of accounts.
*)itemsPerPage : int;
The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
*)kind : string;
Collection type.
*)nextLink : string;
Next link for this account collection.
*)previousLink : string;
Previous link for this account collection.
*)startIndex : int;
The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
*)totalResults : int;
The total number of results for the query, regardless of the number of results in the response.
*)username : string;
Email ID of the authenticated user
*)}
val items : (t, Account.t list) GapiLens.t
val itemsPerPage : (t, int) GapiLens.t
val kind : (t, string) GapiLens.t
val nextLink : (t, string) GapiLens.t
val previousLink : (t, string) GapiLens.t
val startIndex : (t, int) GapiLens.t
val totalResults : (t, int) GapiLens.t
val username : (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