module Comment:sig..end
module Plusoners:sig..end
module Object:sig..end
module InReplyTo:sig..end
module Actor:sig..end
type t = {
|
actor : |
(* |
The person who posted this comment.
| *) |
|
etag : |
(* |
ETag of this response for caching purposes.
| *) |
|
id : |
(* |
The ID of this comment.
| *) |
|
inReplyTo : |
(* |
The activity this comment replied to.
| *) |
|
kind : |
(* |
Identifies this resource as a comment. Value: "plus#comment".
| *) |
|
_object : |
(* |
The object of this comment.
| *) |
|
plusoners : |
(* |
People who +1'd this comment.
| *) |
|
published : |
(* |
The time at which this comment was initially published. Formatted as an RFC 3339 timestamp.
| *) |
|
selfLink : |
(* |
Link to this comment resource.
| *) |
|
updated : |
(* |
The time at which this comment was last updated. Formatted as an RFC 3339 timestamp.
| *) |
|
verb : |
(* |
This comment's verb, indicating what action was performed. Possible values are:
| *) |
val actor : (t, Actor.t) GapiLens.t
val etag : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val inReplyTo : (t, InReplyTo.t list)
GapiLens.t
val kind : (t, string) GapiLens.t
val _object : (t, Object.t) GapiLens.t
val plusoners : (t, Plusoners.t) GapiLens.t
val published : (t, GapiDate.t) GapiLens.t
val selfLink : (t, string) GapiLens.t
val updated : (t, GapiDate.t) GapiLens.t
val verb : (t, string) 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