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

        try
        {
            RandomStoreData randomStoreData = (RandomStoreData)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, randomStoreData.Stores);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int constructor(IntPtr l)
    {
        int result;

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

        try
        {
            RandomStoreData randomStoreData = (RandomStoreData)LuaObject.checkSelf(l);
            Dictionary <RandomStoreItemDataKey, List <RandomStoreItemData> > stores;
            LuaObject.checkType <Dictionary <RandomStoreItemDataKey, List <RandomStoreItemData> > >(l, 2, out stores);
            randomStoreData.Stores = stores;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }