Module Object.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 original actor's name, which is suitable for display.

*)
id : string;(*

ID of the original actor.

*)
image : Image.t;(*

The image representation of the original actor.

*)
url : string;(*

A link to the original 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 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