Files
aliyun-openapi-cpp-sdk/qualitycheck/src/model/GetHitResultResult.cc
2020-12-03 06:17:55 +00:00

102 lines
2.5 KiB
C++

/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/qualitycheck/model/GetHitResultResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Qualitycheck;
using namespace AlibabaCloud::Qualitycheck::Model;
GetHitResultResult::GetHitResultResult() :
ServiceResult()
{}
GetHitResultResult::GetHitResultResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
GetHitResultResult::~GetHitResultResult()
{}
void GetHitResultResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allDataNode = value["Data"]["ResultInfo"];
for (auto valueDataResultInfo : allDataNode)
{
ResultInfo dataObject;
if(!valueDataResultInfo["Rid"].isNull())
dataObject.rid = std::stol(valueDataResultInfo["Rid"].asString());
if(!valueDataResultInfo["RuleName"].isNull())
dataObject.ruleName = valueDataResultInfo["RuleName"].asString();
data_.push_back(dataObject);
}
if(!value["Success"].isNull())
success_ = value["Success"].asString() == "true";
if(!value["Code"].isNull())
code_ = value["Code"].asString();
if(!value["Message"].isNull())
message_ = value["Message"].asString();
if(!value["Count"].isNull())
count_ = std::stoi(value["Count"].asString());
if(!value["PageSize"].isNull())
pageSize_ = std::stoi(value["PageSize"].asString());
if(!value["PageNumber"].isNull())
pageNumber_ = std::stoi(value["PageNumber"].asString());
}
std::string GetHitResultResult::getMessage()const
{
return message_;
}
int GetHitResultResult::getPageSize()const
{
return pageSize_;
}
int GetHitResultResult::getPageNumber()const
{
return pageNumber_;
}
std::vector<GetHitResultResult::ResultInfo> GetHitResultResult::getData()const
{
return data_;
}
int GetHitResultResult::getCount()const
{
return count_;
}
std::string GetHitResultResult::getCode()const
{
return code_;
}
bool GetHitResultResult::getSuccess()const
{
return success_;
}