module User:sig..end
module Locale:sig..end
module Blogs:sig..end
type t = {
|
about : |
(* |
Profile summary information.
| *) |
|
blogs : |
(* |
The container of blogs for this user.
| *) |
|
created : |
(* |
The timestamp of when this profile was created, in seconds since epoch.
| *) |
|
displayName : |
(* |
The display name.
| *) |
|
id : |
(* |
The identifier for this User.
| *) |
|
kind : |
(* |
The kind of this entity. Always blogger#user
| *) |
|
locale : |
(* |
This user's locale
| *) |
|
selfLink : |
(* |
The API REST URL to fetch this resource from.
| *) |
|
url : |
(* |
The user's profile page.
| *) |
val about : (t, string) GapiLens.t
val blogs : (t, Blogs.t) GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val displayName : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val locale : (t, Locale.t) GapiLens.t
val selfLink : (t, string) GapiLens.t
val url : (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