Module Person.Cover

module CoverPhoto : sig ... end
module CoverInfo : sig ... end
type t = {
coverInfo : CoverInfo.t;

Extra information about the cover photo.

coverPhoto : CoverPhoto.t;

The person's primary cover image.

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 : (tCoverInfo.t) GapiLens.t
val coverPhoto : (tCoverPhoto.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