sig
  type t = {
    etag : string;
    id : string;
    items : GapiPlusV1Model.Comment.t list;
    kind : string;
    nextLink : string;
    nextPageToken : string;
    title : string;
    updated : GapiDate.t;
  }
  val etag : (GapiPlusV1Model.CommentFeed.t, string) GapiLens.t
  val id : (GapiPlusV1Model.CommentFeed.t, string) GapiLens.t
  val items :
    (GapiPlusV1Model.CommentFeed.t, GapiPlusV1Model.Comment.t list)
    GapiLens.t
  val kind : (GapiPlusV1Model.CommentFeed.t, string) GapiLens.t
  val nextLink : (GapiPlusV1Model.CommentFeed.t, string) GapiLens.t
  val nextPageToken : (GapiPlusV1Model.CommentFeed.t, string) GapiLens.t
  val title : (GapiPlusV1Model.CommentFeed.t, string) GapiLens.t
  val updated : (GapiPlusV1Model.CommentFeed.t, GapiDate.t) GapiLens.t
  val empty : GapiPlusV1Model.CommentFeed.t
  val render : GapiPlusV1Model.CommentFeed.t -> GapiJson.json_data_model list
  val parse :
    GapiPlusV1Model.CommentFeed.t ->
    GapiJson.json_data_model -> GapiPlusV1Model.CommentFeed.t
  val to_data_model :
    GapiPlusV1Model.CommentFeed.t -> GapiJson.json_data_model
  val of_data_model :
    GapiJson.json_data_model -> GapiPlusV1Model.CommentFeed.t
end