package gapi-ocaml

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

    The description of this blog. This is displayed underneath the title.

    *)
  2. id : int64;
    (*

    The identifier for this resource.

    *)
  3. kind : string;
    (*

    The kind of this entry. Always blogger#blog

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

    The locale this Blog is set to.

    *)
  5. name : string;
    (*

    The name of this blog. This is displayed as the title.

    *)
  6. pages : Pages.t;
    (*

    The container of pages in this blog.

    *)
  7. posts : Posts.t;
    (*

    The container of posts in this blog.

    *)
  8. published : GapiDate.t;
    (*

    RFC 3339 date-time when this blog was published.

    *)
  9. updated : GapiDate.t;
    (*

    RFC 3339 date-time when this blog was last updated.

    *)
  10. url : string;
    (*

    The URL where this blog is published.

    *)
}
val description : (t, string) GapiLens.t
val id : (t, int64) GapiLens.t
val kind : (t, string) GapiLens.t
val locale : (t, Locale.t) GapiLens.t
val name : (t, string) GapiLens.t
val pages : (t, Pages.t) GapiLens.t
val posts : (t, Posts.t) GapiLens.t
val published : (t, GapiDate.t) GapiLens.t
val updated : (t, GapiDate.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