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

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

        try
        {
            List <string> playerIdList;
            LuaObject.checkType <List <string> >(l, 2, out playerIdList);
            FriendGetUserSummaryReqNetTask o = new FriendGetUserSummaryReqNetTask(playerIdList);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }