ie, if I have a service function:
QString RPCServiceClass::namedParameters(QString User, QString Date, QString Account, QString Amount);
If the incoming JSON request is formatted with named parameters instead of just "params":["1","2","3","4"], how do I parse through the parameters to ensure they're being assigned to the proper places inside of my service function?
Thanks in advance!