Generated 2016-04-28 for Vpc.

This commit is contained in:
sdk-team
2019-09-06 10:46:10 +08:00
parent 44bbd797e7
commit 5817ec77ab
679 changed files with 14694 additions and 24300 deletions

View File

@@ -35,13 +35,9 @@ ModifyRouteEntryResult::~ModifyRouteEntryResult()
void ModifyRouteEntryResult::parse(const std::string &payload)
{
Json::CharReaderBuilder builder;
Json::CharReader *reader = builder.newCharReader();
Json::Value *val;
Json::Reader reader;
Json::Value value;
JSONCPP_STRING *errs;
reader->parse(payload.data(), payload.data() + payload.size(), val, errs);
value = *val;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
}