C# Class PlayFab.AdminModels.VirtualCurrencyData

Show file Open project: PlayFab/PlayFabGameServer

Public Properties

Property Type Description
CurrencyCode string
DisplayName string
InitialDeposit int?
RechargeMax int?
RechargeRate int?

Property Details

CurrencyCode public property

unique two-character identifier for this currency type (e.g.: "CC")
public string CurrencyCode
return string

DisplayName public property

friendly name to show in the developer portal, reports, etc.
public string DisplayName
return string

InitialDeposit public property

amount to automatically grant users upon first login to the title
public int? InitialDeposit
return int?

RechargeMax public property

maximum amount to which the currency will recharge (cannot exceed MaxAmount, but can be less)
public int? RechargeMax
return int?

RechargeRate public property

rate at which the currency automatically be added to over time, in units per day (24 hours)
public int? RechargeRate
return int?