module type Feed = sig .. end
type entry_t
type link_t
type extensions_t
type t = {
}
val etag : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val authors : (t, Author.t list) GapiLens.t
val categories : (t, GdataAtom.Category.t list) GapiLens.t
val contributors : (t, Contributor.t list) GapiLens.t
val generator : (t, GdataAtom.Generator.t) GapiLens.t
val icon : (t, GdataAtom.atom_icon) GapiLens.t
val id : (t, GdataAtom.atom_id) GapiLens.t
val updated : (t, GdataAtom.atom_updated) GapiLens.t
val entries : (t, entry_t list) GapiLens.t
val links : (t, link_t list) GapiLens.t
val logo : (t, GdataAtom.atom_logo) GapiLens.t
val rights : (t, Rights.t) GapiLens.t
val subtitle : (t, Subtitle.t) GapiLens.t
val title : (t, Title.t) GapiLens.t
val totalResults : (t, GdataAtom.opensearch_totalResults) GapiLens.t
val itemsPerPage : (t, GdataAtom.opensearch_itemsPerPage) GapiLens.t
val startIndex : (t, GdataAtom.opensearch_startIndex) GapiLens.t
val extensions : (t, extensions_t) GapiLens.t
include GdataAtom.AtomData
val parse_feed : GdataCore.xml_data_model -> t