Module GapiBloggerV2Model.Page

module Blog : sig ... end
module Author : sig ... end
type t = {
author : Author.t;(*

The author of this Page.

*)
blog : Blog.t;(*

Data about the blog containing this Page.

*)
content : string;(*

The body content of this Page, in HTML.

*)
id : int64;(*

The identifier for this resource.

*)
kind : string;(*

The kind of this entity. Always blogger#page

*)
published : GapiDate.t;(*

RFC 3339 date-time when this Page was published.

*)
title : string;(*

The title of this entity. This is the name displayed in the Admin user interface.

*)
updated : GapiDate.t;(*

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

*)
url : string;(*

The URL that this Page is displayed at.

*)
}
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 published : ( t, GapiDate.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