Module GapiBloggerV2Model.Blog

module Posts : sig ... end
module Pages : sig ... end
module Locale : sig ... end
type t = {
description : string;(*

The description of this blog. This is displayed underneath the title.

*)
id : int64;(*

The identifier for this resource.

*)
kind : string;(*

The kind of this entry. Always blogger#blog

*)
locale : Locale.t;(*

The locale this Blog is set to.

*)
name : string;(*

The name of this blog. This is displayed as the title.

*)
pages : Pages.t;(*

The container of pages in this blog.

*)
posts : Posts.t;(*

The container of posts in this blog.

*)
published : GapiDate.t;(*

RFC 3339 date-time when this blog was published.

*)
updated : GapiDate.t;(*

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

*)
url : string;(*

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 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