package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Comment.ActorSource

Sourcemodule Verification : sig ... end
Sourcemodule Image : sig ... end
Sourcemodule ClientSpecificActorInfo : sig ... end
Sourcetype t = {
  1. clientSpecificActorInfo : ClientSpecificActorInfo.t;
    (*

    Actor info specific to particular clients.

    *)
  2. displayName : string;
    (*

    The name of this actor, suitable for display.

    *)
  3. id : string;
    (*

    The ID of the actor.

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

    The image representation of this actor.

    *)
  5. url : string;
    (*

    A link to the Person resource for this actor.

    *)
  6. verification : Verification.t;
    (*

    Verification status of actor.

    *)
}
Sourceval clientSpecificActorInfo : (t, ClientSpecificActorInfo.t) GapiLens.t
Sourceval displayName : (t, string) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval image : (t, Image.t) GapiLens.t
Sourceval url : (t, string) GapiLens.t
Sourceval verification : (t, Verification.t) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list