You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
842 B
C#
21 lines
842 B
C#
3 months ago
|
/**
|
||
|
* Class containing pre-defined constants to use with AppLovin event tracking APIs.
|
||
|
*/
|
||
|
public static class MaxEvents
|
||
|
{
|
||
|
/**
|
||
|
* Nested class representing pre-defined AppLovin events to be fired with AppLovin event tracking APIs.
|
||
|
*/
|
||
|
public class AppLovin
|
||
|
{
|
||
|
public const string UserLoggedIn = "login";
|
||
|
public const string UserCreatedAccount = "registration";
|
||
|
public const string UserCompletedTutorial = "tutorial";
|
||
|
public const string UserCompletedLevel = "level";
|
||
|
public const string UserCompletedAchievement = "achievement";
|
||
|
public const string UserSpentVirtualCurrency = "vcpurchase";
|
||
|
public const string UserCompletedInAppPurchase = "iap";
|
||
|
public const string UserSentInvitation = "invite";
|
||
|
public const string UserSharedLink = "share";
|
||
|
}
|
||
|
}
|