package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. familyName : string;
    (*

    The family name (last name) of this person.

    *)
  2. formatted : string;
    (*

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

    *)
  3. givenName : string;
    (*

    The given name (first name) of this person.

    *)
  4. honorificPrefix : string;
    (*

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

    *)
  5. honorificSuffix : string;
    (*

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

    *)
  6. 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