C# Class PlayFab.ClientModels.UserDataRecord

Show file Open project: PlayFab/PlayFabGameServer Class Usage Examples

Public Properties

Property Type Description
LastUpdated System.DateTime
Permission UserDataPermission?
Value string

Property Details

LastUpdated public property

Timestamp for when this data was last updated.
public DateTime,System LastUpdated
return System.DateTime

Permission public property

Indicates whether this data can be read by all users (public) or only the user (private). This is used for GetUserData requests being made by one player about another player.
public UserDataPermission? Permission
return UserDataPermission?

Value public property

Data stored for the specified user data key.
public string Value
return string