Module GapiBloggerV2Model.User

module User: sig .. end

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