package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Image : sig ... end
type t = {
  1. displayName : string;
    (*

    The display name.

    *)
  2. id : string;
    (*

    The identifier of the Post creator.

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

    The Post author's avatar.

    *)
  4. url : string;
    (*

    The URL of the Post creator's Profile page.

    *)
}
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 empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t