package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type entry_t
type extensions_t
type t = {
  1. etag : string;
  2. kind : string;
  3. authors : GdataAtom.Author.t list;
  4. categories : GdataAtom.Category.t list;
  5. contributors : GdataAtom.Contributor.t list;
  6. generator : GdataAtom.Generator.t;
  7. icon : GdataAtom.atom_icon;
  8. id : GdataAtom.atom_id;
  9. updated : GdataAtom.atom_updated;
  10. entries : entry_t list;
  11. rights : GdataAtom.Rights.t;
  12. subtitle : GdataAtom.Subtitle.t;
  13. title : GdataAtom.Title.t;
  14. totalResults : GdataAtom.opensearch_totalResults;
  15. itemsPerPage : GdataAtom.opensearch_itemsPerPage;
  16. startIndex : GdataAtom.opensearch_startIndex;
  17. extensions : extensions_t;
}
val etag : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val authors : (t, GdataAtom.Author.t list) GapiLens.t
val categories : (t, GdataAtom.Category.t list) GapiLens.t
val contributors : (t, GdataAtom.Contributor.t list) GapiLens.t
val entries : (t, entry_t list) GapiLens.t
val extensions : (t, extensions_t) GapiLens.t
include GdataAtom.AtomData with type t := t
val empty : t
val to_xml_data_model : t -> GdataCore.xml_data_model list
val of_xml_data_model : t -> GdataCore.xml_data_model -> t
val parse_feed : GdataCore.xml_data_model -> t