package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Replies : sig ... end
module Blog : sig ... end
module Author : sig ... end
type t = {
  1. author : Author.t;
    (*

    The author of this Post.

    *)
  2. blog : Blog.t;
    (*

    Data about the blog containing this Post.

    *)
  3. content : string;
    (*

    The content of the Post. May contain HTML markup.

    *)
  4. id : int64;
    (*

    The identifier of this Post.

    *)
  5. kind : string;
    (*

    The kind of this entity. Always blogger#post

    *)
  6. labels : string list;
    (*

    The list of labels this Post was tagged with.

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

    RFC 3339 date-time when this Post was published.

    *)
  8. replies : Replies.t;
    (*

    The container of comments on this Post.

    *)
  9. title : string;
    (*

    The title of the Post.

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

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

    *)
  11. url : string;
    (*

    The URL where this Post is displayed.

    *)
}
val author : (t, Author.t) GapiLens.t
val blog : (t, Blog.t) GapiLens.t
val content : (t, string) GapiLens.t
val id : (t, int64) GapiLens.t
val kind : (t, string) GapiLens.t
val labels : (t, string list) GapiLens.t
val published : (t, GapiDate.t) GapiLens.t
val replies : (t, Replies.t) GapiLens.t
val title : (t, string) 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