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

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

        try
        {
            bool autoJoin;
            LuaObject.checkType(l, 2, out autoJoin);
            int joinLevel;
            LuaObject.checkType(l, 3, out joinLevel);
            string hiringDeclaration;
            LuaObject.checkType(l, 4, out hiringDeclaration);
            GuildInfoSetReqNetTask o = new GuildInfoSetReqNetTask(autoJoin, joinLevel, hiringDeclaration);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }