module Blog:sig..end
module Posts:sig..end
module Pages:sig..end
module Locale:sig..end
type t = {
|
description : |
(* |
The description of this blog. This is displayed underneath the title.
| *) |
|
id : |
(* |
The identifier for this resource.
| *) |
|
kind : |
(* |
The kind of this entry. Always blogger#blog
| *) |
|
locale : |
(* |
The locale this Blog is set to.
| *) |
|
name : |
(* |
The name of this blog. This is displayed as the title.
| *) |
|
pages : |
(* |
The container of pages in this blog.
| *) |
|
posts : |
(* |
The container of posts in this blog.
| *) |
|
published : |
(* |
RFC 3339 date-time when this blog was published.
| *) |
|
selfLink : |
(* |
The API REST URL to fetch this resource from.
| *) |
|
updated : |
(* |
RFC 3339 date-time when this blog was last updated.
| *) |
|
url : |
(* |
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 selfLink : (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