package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Parameters

module Entry : AtomData

Signature

type entry_t = Entry.t
type extensions_t = Extensions.t
type t = {
  1. etag : string;
  2. kind : string;
  3. authors : Author.t list;
  4. categories : Category.t list;
  5. contributors : Contributor.t list;
  6. generator : Generator.t;
  7. icon : atom_icon;
  8. id : atom_id;
  9. updated : atom_updated;
  10. entries : entry_t list;
  11. rights : Rights.t;
  12. subtitle : Subtitle.t;
  13. title : Title.t;
  14. totalResults : opensearch_totalResults;
  15. itemsPerPage : opensearch_itemsPerPage;
  16. startIndex : opensearch_startIndex;
  17. extensions : extensions_t;
}
val etag : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val authors : (t, Author.t list) GapiLens.t
val categories : (t, Category.t list) GapiLens.t
val contributors : (t, Contributor.t list) GapiLens.t
val generator : (t, Generator.t) GapiLens.t
val icon : (t, atom_icon) GapiLens.t
val id : (t, atom_id) GapiLens.t
val updated : (t, atom_updated) GapiLens.t
val entries : (t, entry_t list) 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, opensearch_totalResults) GapiLens.t
val itemsPerPage : (t, opensearch_itemsPerPage) GapiLens.t
val startIndex : (t, opensearch_startIndex) GapiLens.t
val extensions : (t, extensions_t) GapiLens.t
include 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