Module GapiPlusV1Model.Comment

module Plusoners : sig ... end
module Object : sig ... end
module InReplyTo : sig ... end
module Actor : sig ... end
type t = {
actor : Actor.t;

The person who posted this comment.

etag : string;

ETag of this response for caching purposes.

id : string;

The ID of this comment.

inReplyTo : InReplyTo.t list;

The activity this comment replied to.

kind : string;

Identifies this resource as a comment. Value: "plus#comment".

_object : Object.t;

The object of this comment.

plusoners : Plusoners.t;

People who +1'd this comment.

published : GapiDate.t;

The time at which this comment was initially published. Formatted as an RFC 3339 timestamp.

updated : GapiDate.t;

The time at which this comment was last updated. Formatted as an RFC 3339 timestamp.

verb : string;

This comment's verb, indicating what action was performed. Possible values are:

  • "post" - Publish content to the stream.
}
val actor : (tActor.t) GapiLens.t
val etag : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val inReplyTo : (tInReplyTo.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val _object : (tObject.t) GapiLens.t
val plusoners : (tPlusoners.t) GapiLens.t
val published : (tGapiDate.t) GapiLens.t
val updated : (tGapiDate.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