sig
  type t = {
    items : GapiBloggerV2Model.Comment.t list;
    kind : string;
    nextPageToken : string;
    prevPageToken : string;
  }
  val items :
    (GapiBloggerV2Model.CommentList.t, GapiBloggerV2Model.Comment.t list)
    GapiLens.t
  val kind : (GapiBloggerV2Model.CommentList.t, string) GapiLens.t
  val nextPageToken : (GapiBloggerV2Model.CommentList.t, string) GapiLens.t
  val prevPageToken : (GapiBloggerV2Model.CommentList.t, string) GapiLens.t
  val empty : GapiBloggerV2Model.CommentList.t
  val render :
    GapiBloggerV2Model.CommentList.t -> GapiJson.json_data_model list
  val parse :
    GapiBloggerV2Model.CommentList.t ->
    GapiJson.json_data_model -> GapiBloggerV2Model.CommentList.t
  val to_data_model :
    GapiBloggerV2Model.CommentList.t -> GapiJson.json_data_model
  val of_data_model :
    GapiJson.json_data_model -> GapiBloggerV2Model.CommentList.t
end