Comment.Actor
module Verification : sig ... end
module Image : sig ... end
module ClientSpecificActorInfo : sig ... end
type t = {
clientSpecificActorInfo : ClientSpecificActorInfo.t; | (* Actor info specific to particular clients. *) |
displayName : string; | (* The name of this actor, suitable for display. *) |
id : string; | (* The ID of the actor. *) |
image : Image.t; | (* The image representation of this actor. *) |
url : string; | (* A link to the Person resource for this actor. *) |
verification : Verification.t; | (* Verification status of actor. *) |
}
val clientSpecificActorInfo : ( t, ClientSpecificActorInfo.t ) GapiLens.t
val displayName : ( t, string ) GapiLens.t
val id : ( t, string ) GapiLens.t
val image : ( t, Image.t ) GapiLens.t
val url : ( t, string ) GapiLens.t
val verification : ( t, Verification.t ) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t