Class PlayerCurrencyBalanceResponse
PlayerCurrencyBalanceResponse
Inherited Members
Namespace: Unity.Services.Apis.Economy
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "player_currency_balance_response")]
[Preserve]
public class PlayerCurrencyBalanceResponse
Constructors
PlayerCurrencyBalanceResponse(List<CurrencyBalanceResponse>, PlayerCurrencyBalanceResponseLinks)
Initializes a new instance of the Player
Declaration
[Preserve]
public PlayerCurrencyBalanceResponse(List<CurrencyBalanceResponse> results = null, PlayerCurrencyBalanceResponseLinks links = null)
Parameters
Type | Name | Description |
---|---|---|
List<Currency |
results | List of currency balances. (required). |
Player |
links | links (required). |
Properties
Links
Gets or Sets Links
Declaration
[DataMember(Name = "links", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public PlayerCurrencyBalanceResponseLinks Links { get; set; }
Property Value
Type | Description |
---|---|
Player |
Results
List of currency balances.
Declaration
[DataMember(Name = "results", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<CurrencyBalanceResponse> Results { get; set; }
Property Value
Type | Description |
---|---|
List<Currency |
List of currency balances. |