﻿namespace Yodo1.FanCraft
{
    public class SDKConstant
    {
        public static readonly string KEY_EVENT_NAME = "event_name";
        public static readonly string KEY_EVENT_DATA = "event_data";
        public static readonly string KEY_ERROR = "error";
        public static readonly string KEY_INIT_SUCCESS_INFO = "init_success_info";
        public static readonly string KEY_USER_INFO = "user_info";
        public static readonly string KEY_DEVICE_TOKEN = "device_token";

        public static readonly string KEY_NOTIFICATION_ID = "notification_id";
        public static readonly string KEY_NOTIFICATION_HANDLER = "notification_handler";

        public static readonly string KEY_STATUS = "status";

        public static readonly string METHOD_INIT = "OnInitEvent";
        public static readonly string METHOD_UPDATE_GAME_USER = "OnUpdateGameUser";
        public static readonly string METHOD_ADD_USER_TAGS = "OnAddUserTags";
        public static readonly string METHOD_INTER_NOTIFICATION_EVENT = "OnInterstitialNotificationEvent";

        public static readonly string METHOD_REGISTER_REMOTE_NOTIFICATIONS = "OnRegisterForRemoteNotificationsDeviceToken";
    }
}

