package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiBloggerV2Model.CommentSource

Sourcemodule Post : sig ... end
Sourcemodule InReplyTo : sig ... end
Sourcemodule Blog : sig ... end
Sourcemodule Author : sig ... end
Sourcetype 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.

    *)
}
Sourceval author : (t, Author.t) GapiLens.t
Sourceval blog : (t, Blog.t) GapiLens.t
Sourceval content : (t, string) GapiLens.t
Sourceval id : (t, int64) GapiLens.t
Sourceval inReplyTo : (t, InReplyTo.t) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval post : (t, Post.t) GapiLens.t
Sourceval published : (t, GapiDate.t) GapiLens.t
Sourceval updated : (t, GapiDate.t) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t