Module Person.Name

type t = {
familyName : string;

The family name (last name) of this person.

formatted : string;

The full name of this person, including middle names, suffixes, etc.

givenName : string;

The given name (first name) of this person.

honorificPrefix : string;

The honorific prefixes (such as "Dr." or "Mrs.") for this person.

honorificSuffix : string;

The honorific suffixes (such as "Jr.") for this person.

middleName : string;

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