Module GdataBatch.Status

module Status: sig .. end

type t = {
   code : int;
   reason : string;
   content_type : string;
   content : string;
}
val code : (t, int) GapiLens.t
val reason : (t, string) GapiLens.t
val content_type : (t, string) GapiLens.t
val content : (t, string) GapiLens.t
include GdataAtom.AtomData