Module GdataAtom.Link

module Link: sig .. end

type t = {
   href : string;
   length : Int64.t;
   rel : string;
   title : string;
   _type : string;
}
val href : (t, string) GapiLens.t
val length : (t, Int64.t) GapiLens.t
val rel : (t, string) GapiLens.t
val title : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
include GdataAtom.AtomData