C# Class PlayFab.ClientModels.UserTitleInfo

Show file Open project: PlayFab/PlayFabGameServer

Public Properties

Property Type Description
Created System.DateTime
DisplayName string
FirstLogin DateTime?
LastLogin DateTime?
Origination UserOrigination?
isBanned bool?

Property Details

Created public property

timestamp indicating when the user was first associated with this game (this can differ significantly from when the user first registered with PlayFab)
public DateTime,System Created
return System.DateTime

DisplayName public property

name of the user, as it is displayed in-game
public string DisplayName
return string

FirstLogin public property

timestamp indicating when the user first signed into this game (this can differ from the Created timestamp, as other events, such as issuing a beta key to the user, can associate the title to the user)
public DateTime? FirstLogin
return DateTime?

LastLogin public property

timestamp for the last user login for this title
public DateTime? LastLogin
return DateTime?

Origination public property

source by which the user first joined the game, if known
public UserOrigination? Origination
return UserOrigination?

isBanned public property

boolean indicating whether or not the user is currently banned for a title
public bool? isBanned
return bool?