v3.1.2
2020.3+
Class Costs
The costs associated with a virtual purchase. This includes a list of currencies and inventory items that were required to make the purchase.
Namespace: Unity.Services.Economy.Model
Syntax
[Preserve]
public class Costs
Constructors
Costs(List<CurrencyExchangeItem>, List<InventoryExchangeItem>)
Declaration
[Preserve]
public Costs(List<CurrencyExchangeItem> currencies, List<InventoryExchangeItem> inventory)
Parameters
Type | Name | Description |
---|---|---|
List<CurrencyExchangeItem> | currencies | |
List<InventoryExchangeItem> | inventory |
Fields
Currency
A list of currencies and their amounts required to make the purchase.
Declaration
[Preserve]
public List<CurrencyExchangeItem> Currency
Field Value
Type | Description |
---|---|
List<CurrencyExchangeItem> |
Inventory
A list of player's inventory items and their amounts required to make the purchases.
Declaration
[Preserve]
public List<InventoryExchangeItem> Inventory
Field Value
Type | Description |
---|---|
List<InventoryExchangeItem> |