98 lines
2.5 KiB
C++
98 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/aegis/model/DescribeCheckWarningDetailResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Aegis;
|
|
using namespace AlibabaCloud::Aegis::Model;
|
|
|
|
DescribeCheckWarningDetailResult::DescribeCheckWarningDetailResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
DescribeCheckWarningDetailResult::DescribeCheckWarningDetailResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
DescribeCheckWarningDetailResult::~DescribeCheckWarningDetailResult()
|
|
{}
|
|
|
|
void DescribeCheckWarningDetailResult::parse(const std::string &payload)
|
|
{
|
|
Json::CharReaderBuilder builder;
|
|
Json::CharReader *reader = builder.newCharReader();
|
|
Json::Value *val;
|
|
Json::Value value;
|
|
JSONCPP_STRING *errs;
|
|
reader->parse(payload.data(), payload.data() + payload.size(), val, errs);
|
|
value = *val;
|
|
setRequestId(value["RequestId"].asString());
|
|
if(!value["CheckId"].isNull())
|
|
checkId_ = std::stol(value["CheckId"].asString());
|
|
if(!value["Level"].isNull())
|
|
level_ = value["Level"].asString();
|
|
if(!value["Item"].isNull())
|
|
item_ = value["Item"].asString();
|
|
if(!value["Prompt"].isNull())
|
|
prompt_ = value["Prompt"].asString();
|
|
if(!value["Type"].isNull())
|
|
type_ = value["Type"].asString();
|
|
if(!value["Advice"].isNull())
|
|
advice_ = value["Advice"].asString();
|
|
if(!value["Description"].isNull())
|
|
description_ = value["Description"].asString();
|
|
|
|
}
|
|
|
|
std::string DescribeCheckWarningDetailResult::getItem()const
|
|
{
|
|
return item_;
|
|
}
|
|
|
|
std::string DescribeCheckWarningDetailResult::getType()const
|
|
{
|
|
return type_;
|
|
}
|
|
|
|
std::string DescribeCheckWarningDetailResult::getDescription()const
|
|
{
|
|
return description_;
|
|
}
|
|
|
|
long DescribeCheckWarningDetailResult::getCheckId()const
|
|
{
|
|
return checkId_;
|
|
}
|
|
|
|
std::string DescribeCheckWarningDetailResult::getLevel()const
|
|
{
|
|
return level_;
|
|
}
|
|
|
|
std::string DescribeCheckWarningDetailResult::getPrompt()const
|
|
{
|
|
return prompt_;
|
|
}
|
|
|
|
std::string DescribeCheckWarningDetailResult::getAdvice()const
|
|
{
|
|
return advice_;
|
|
}
|
|
|