package gapi-ocaml

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

Module GapiBloggerV2Model.BlogSource

Sourcemodule Posts : sig ... end
Sourcemodule Pages : sig ... end
Sourcemodule Locale : sig ... end
Sourcetype 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.

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

Innovation. Community. Security.