package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Verification : sig ... end
module Name : sig ... end
module Image : sig ... end
module ClientSpecificActorInfo : sig ... end
type t = {
  1. clientSpecificActorInfo : ClientSpecificActorInfo.t;
    (*

    Actor info specific to particular clients.

    *)
  2. displayName : string;
    (*

    The name of the actor, suitable for display.

    *)
  3. id : string;
    (*

    The ID of the actor's Person resource.

    *)
  4. image : Image.t;
    (*

    The image representation of the actor.

    *)
  5. name : Name.t;
    (*

    An object representation of the individual components of name.

    *)
  6. url : string;
    (*

    The link to the actor's Google profile.

    *)
  7. 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