package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Person.NameSource

Sourcetype 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.

    *)
}
Sourceval familyName : (t, string) GapiLens.t
Sourceval formatted : (t, string) GapiLens.t
Sourceval givenName : (t, string) GapiLens.t
Sourceval honorificPrefix : (t, string) GapiLens.t
Sourceval honorificSuffix : (t, string) GapiLens.t
Sourceval middleName : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list