package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module CoverPhoto : sig ... end
module CoverInfo : sig ... end
type t = {
  1. coverInfo : CoverInfo.t;
    (*

    Extra information about the cover photo.

    *)
  2. coverPhoto : CoverPhoto.t;
    (*

    The person's primary cover image.

    *)
  3. layout : string;
    (*

    The layout of the cover art. Possible values include, but are not limited to, the following values:

    • "banner" - One large image banner.
    *)
}
val coverInfo : (t, CoverInfo.t) GapiLens.t
val coverPhoto : (t, CoverPhoto.t) GapiLens.t
val layout : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t