using System.Collections.Generic;
namespace ShiroginSDK.Runtime.Services.Interfaces
{
///
/// Provides access to AppsFlyer SDK for event and purchase tracking.
///
public interface IAppsFlyerService
{
bool IsInitialized { get; }
void TrackPurchase(string productId, string currency, double price, int quantity = 1);
void TrackCustomEvent(string eventName, Dictionary eventValues = null);
}
}