C# Class PlayFab.AdminModels.VirtualCurrencyData

Mostra file Open project: PlayFab/PlayFabGameServer

Public Properties

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

Property Details

CurrencyCode public_oe property

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

DisplayName public_oe property

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

InitialDeposit public_oe property

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

RechargeMax public_oe property

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

RechargeRate public_oe property

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