Module GapiPlusV1Model.CommentFeed

module CommentFeed: sig .. end

type t = {
   etag : string; (*
ETag of this response for caching purposes.
*)
   id : string; (*
The ID of this collection of comments.
*)
   items : GapiPlusV1Model.Comment.t list; (*
The comments in this page of results.
*)
   kind : string; (*
Identifies this resource as a collection of comments. Value: "plus#commentFeed".
*)
   nextLink : string; (*
Link to the next page of activities.
*)
   nextPageToken : string; (*
The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
*)
   title : string; (*
The title of this collection of comments.
*)
   updated : GapiDate.t; (*
The time at which this collection of comments was last updated. Formatted as an RFC 3339 timestamp.
*)
}
val etag : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val items : (t, GapiPlusV1Model.Comment.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val nextLink : (t, string) GapiLens.t
val nextPageToken : (t, string) GapiLens.t
val title : (t, string) GapiLens.t
val updated : (t, GapiDate.t) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t