Activity.Actor
module Verification : sig ... end
module Name : 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 the actor, suitable for display. *) |
id : string; | (* The ID of the actor's Person resource. *) |
image : Image.t; | (* The image representation of the actor. *) |
name : Name.t; | (* An object representation of the individual components of name. *) |
url : string; | (* The link to the actor's Google profile. *) |
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 name : ( t, Name.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