Show / Hide Table of Contents

Class Player.NameData

An object representation of the individual components of the player's name. For some players, these fields may not be present.

Inheritance
System.Object
Player.NameData
Namespace: Google.Apis.Games.v1.Data
Assembly: Google.Apis.Games.v1.dll
Syntax
public class NameData : object

Properties

FamilyName

The family name of this player. In some places, this is known as the last name.

Declaration
public virtual string FamilyName { get; set; }
Property Value
Type Description
System.String

GivenName

The given name of this player. In some places, this is known as the first name.

Declaration
public virtual string GivenName { get; set; }
Property Value
Type Description
System.String
Back to top