using System.Collections.Generic;
namespace UnityEngine.Purchasing
{
///
/// Extracted from Unity Analytics for testability.
///
internal interface IUnityAnalytics
{
void Transaction(string productId, decimal price,
string currency, string receipt,
string signature);
void CustomEvent(string name, Dictionary data);
}
}