SquareDash/Library/PackageCache/com.unity.services.analytics@4.3.0/Runtime/Events/Transaction/Product.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

23 lines
689 B
C#

using System.Collections.Generic;
namespace Unity.Services.Analytics
{
public struct Product
{
/// <summary>
/// (Optional) The real currency spent or received as part of this product
/// </summary>
public RealCurrency? RealCurrency;
/// <summary>
/// (Required) The virtual currencies spent or received as part of this product (can be an empty list if none)
/// </summary>
public List<VirtualCurrency> VirtualCurrencies;
/// <summary>
/// (Required) The items spent or received as part of this product (can be an empty list if none)
/// </summary>
public List<Item> Items;
}
}