public static int get_m_cachedSingleHeroRankListDict(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, globalRankingListComponent.m_luaExportHelper.m_cachedSingleHeroRankListDict);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_PostDeSerialize(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            globalRankingListComponent.m_luaExportHelper.__callBase_PostDeSerialize();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int constructor(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent o = new GlobalRankingListComponent();
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int set_m_cachedSingleHeroRankListDict(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            Dictionary <int, GlobalRankingListComponent.CachedRankingListInfo> cachedSingleHeroRankListDict;
            LuaObject.checkType <Dictionary <int, GlobalRankingListComponent.CachedRankingListInfo> >(l, 2, out cachedSingleHeroRankListDict);
            globalRankingListComponent.m_luaExportHelper.m_cachedSingleHeroRankListDict = cachedSingleHeroRankListDict;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_Tick(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            uint deltaMillisecond;
            LuaObject.checkType(l, 2, out deltaMillisecond);
            globalRankingListComponent.m_luaExportHelper.__callBase_Tick(deltaMillisecond);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int IsRankingListInfoValid(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            RankingListType            rankingListType;
            LuaObject.checkEnum <RankingListType>(l, 2, out rankingListType);
            bool b = globalRankingListComponent.IsRankingListInfoValid(rankingListType);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, b);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int IsSingleHeroRankingListInfoValid(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            int heroId;
            LuaObject.checkType(l, 2, out heroId);
            bool b = globalRankingListComponent.IsSingleHeroRankingListInfoValid(heroId);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, b);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_UpdateLastRankingListQueryTime(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            RankingListType            rankingListType;
            LuaObject.checkEnum <RankingListType>(l, 2, out rankingListType);
            DateTime currTime;
            LuaObject.checkValueType <DateTime>(l, 3, out currTime);
            globalRankingListComponent.m_luaExportHelper.__callBase_UpdateLastRankingListQueryTime(rankingListType, currTime);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int AddRankingListInfoToCache(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            RankingListType            rankingType;
            LuaObject.checkEnum <RankingListType>(l, 2, out rankingType);
            RankingListInfo rankingListInfo;
            LuaObject.checkType <RankingListInfo>(l, 3, out rankingListInfo);
            globalRankingListComponent.AddRankingListInfoToCache(rankingType, rankingListInfo);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_CheckRankingListInfoQuery(IntPtr l)
    {
        int result;

        try
        {
            GlobalRankingListComponent globalRankingListComponent = (GlobalRankingListComponent)LuaObject.checkSelf(l);
            RankingListType            rankingListType;
            LuaObject.checkEnum <RankingListType>(l, 2, out rankingListType);
            int  i;
            bool b = globalRankingListComponent.m_luaExportHelper.__callBase_CheckRankingListInfoQuery(rankingListType, out i);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, b);
            LuaObject.pushValue(l, i);
            result = 3;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }