package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Locale : sig ... end
module Blogs : sig ... end
type t = {
  1. about : string;
    (*

    Profile summary information.

    *)
  2. blogs : Blogs.t;
    (*

    The container of blogs for this user.

    *)
  3. created : GapiDate.t;
    (*

    The timestamp of when this profile was created, in seconds since epoch.

    *)
  4. displayName : string;
    (*

    The display name.

    *)
  5. id : string;
    (*

    The identifier for this User.

    *)
  6. kind : string;
    (*

    The kind of this entity. Always blogger#user

    *)
  7. locale : Locale.t;
    (*

    This user's locale

    *)
  8. 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 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