package gapi-ocaml

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

    The author of this Comment.

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

    Data about the blog containing this comment.

    *)
  3. content : string;
    (*

    The actual content of the comment. May include HTML markup.

    *)
  4. id : int64;
    (*

    The identifier for this resource.

    *)
  5. inReplyTo : InReplyTo.t;
    (*

    Data about the comment this is in reply to.

    *)
  6. kind : string;
    (*

    The kind of this entry. Always blogger#comment

    *)
  7. post : Post.t;
    (*

    Data about the post containing this comment.

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

    RFC 3339 date-time when this comment was published.

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

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

    *)
}
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 inReplyTo : (t, InReplyTo.t) GapiLens.t
val kind : (t, string) GapiLens.t
val post : (t, Post.t) GapiLens.t
val published : (t, GapiDate.t) GapiLens.t
val updated : (t, GapiDate.t) 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