Show / Hide Table of Contents

Class Person.NameData

An object representation of the individual components of a person's name.

Inheritance
System.Object
Person.NameData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class NameData

Properties

FamilyName

The family name (last name) of this person.

Declaration
[JsonProperty("familyName")]
public virtual string FamilyName { get; set; }
Property Value
Type Description
System.String

Formatted

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

Declaration
[JsonProperty("formatted")]
public virtual string Formatted { get; set; }
Property Value
Type Description
System.String

GivenName

The given name (first name) of this person.

Declaration
[JsonProperty("givenName")]
public virtual string GivenName { get; set; }
Property Value
Type Description
System.String

HonorificPrefix

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

Declaration
[JsonProperty("honorificPrefix")]
public virtual string HonorificPrefix { get; set; }
Property Value
Type Description
System.String

HonorificSuffix

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

Declaration
[JsonProperty("honorificSuffix")]
public virtual string HonorificSuffix { get; set; }
Property Value
Type Description
System.String

MiddleName

The middle name of this person.

Declaration
[JsonProperty("middleName")]
public virtual string MiddleName { get; set; }
Property Value
Type Description
System.String
Back to top