Playvoi/Playvoi.Client/Assets/ShiroginSDK/Runtime/Services/Interfaces/IAppsFlyerService.cs

15 lines
No EOL
482 B
C#

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