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 PlayerCurrencyBalanceResponse class.
Declaration
[Preserve]
public PlayerCurrencyBalanceResponse(List<CurrencyBalanceResponse> results = null, PlayerCurrencyBalanceResponseLinks links = null)
Parameters
Type | Name | Description |
---|---|---|
List<CurrencyBalanceResponse> | results | List of currency balances. (required). |
PlayerCurrencyBalanceResponseLinks | 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 |
---|---|
PlayerCurrencyBalanceResponseLinks |
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<CurrencyBalanceResponse> | List of currency balances. |