Playvoi/Assets/ShiroginSDK/Runtime/Services/Interfaces/IAppsFlyerService.cs
2025-10-30 22:48:16 +03:00

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);
}
}