module Name:sig..end
type t = {
|
familyName : |
(* |
The family name (last name) of this person.
| *) |
|
formatted : |
(* |
The full name of this person, including middle names, suffixes, etc.
| *) |
|
givenName : |
(* |
The given name (first name) of this person.
| *) |
|
honorificPrefix : |
(* |
The honorific prefixes (such as "Dr." or "Mrs.") for this person.
| *) |
|
honorificSuffix : |
(* |
The honorific suffixes (such as "Jr.") for this person.
| *) |
|
middleName : |
(* |
The middle name of this person.
| *) |
val familyName : (t, string) GapiLens.t
val formatted : (t, string) GapiLens.t
val givenName : (t, string) GapiLens.t
val honorificPrefix : (t, string) GapiLens.t
val honorificSuffix : (t, string) GapiLens.t
val middleName : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t