module Actor:sig..end
module Verification:sig..end
module Name:sig..end
module Image:sig..end
module ClientSpecificActorInfo:sig..end
type t = {
|
clientSpecificActorInfo : |
(* |
Actor info specific to particular clients.
| *) |
|
displayName : |
(* |
The name of the actor, suitable for display.
| *) |
|
id : |
(* |
The ID of the actor's Person resource.
| *) |
|
image : |
(* |
The image representation of the actor.
| *) |
|
name : |
(* |
An object representation of the individual components of name.
| *) |
|
url : |
(* |
The link to the actor's Google profile.
| *) |
|
verification : |
(* |
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