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:
|
}
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