Module GdataAtom.BasicEntry

module BasicEntry: sig .. end

type t = {
   etag : string;
   id : GdataAtom.atom_id;
   title : Title.t;
   published : GdataAtom.atom_published;
   authors : Author.t list;
   updated : GdataAtom.atom_updated;
   edited : GdataAtom.app_edited;
   categories : GdataAtom.Category.t list;
   content : Content.t;
   links : GdataAtom.Link.t list;
}
val etag : (t, string) GapiLens.t
val id : (t, GdataAtom.atom_id) GapiLens.t
val title : (t, Title.t) GapiLens.t
val published : (t, GdataAtom.atom_published) GapiLens.t
val authors : (t, Author.t list) GapiLens.t
val updated : (t, GdataAtom.atom_updated) GapiLens.t
val edited : (t, GdataAtom.app_edited) GapiLens.t
val categories : (t, GdataAtom.Category.t list) GapiLens.t
val content : (t, Content.t) GapiLens.t
val links : (t, GdataAtom.Link.t list) GapiLens.t
include GdataAtom.AtomData
val node_matches : string * string -> bool