Hi I have std::wstring Var_;
which is getting filled with json data something like this:
{
"event": "pull",
"eventOccurred": "1642404339906526100",
"Containers": [],
"eventReported": 132868779492360000
}
My need is to get this Json data to copy into rapidjson::Document variable . How can I do that in c++?