Files
aliyun-openapi-cpp-sdk/aegis/src/model/DescribeWebLockBindListResult.cc
2019-04-15 14:17:29 +08:00

98 lines
3.0 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/DescribeWebLockBindListResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Aegis;
using namespace AlibabaCloud::Aegis::Model;
DescribeWebLockBindListResult::DescribeWebLockBindListResult() :
ServiceResult()
{}
DescribeWebLockBindListResult::DescribeWebLockBindListResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
DescribeWebLockBindListResult::~DescribeWebLockBindListResult()
{}
void DescribeWebLockBindListResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allBindList = value["BindList"]["Bind"];
for (auto value : allBindList)
{
Bind bindListObject;
if(!value["Uuid"].isNull())
bindListObject.uuid = value["Uuid"].asString();
if(!value["InstanceName"].isNull())
bindListObject.instanceName = value["InstanceName"].asString();
if(!value["InternetIp"].isNull())
bindListObject.internetIp = value["InternetIp"].asString();
if(!value["IntranetIp"].isNull())
bindListObject.intranetIp = value["IntranetIp"].asString();
if(!value["Os"].isNull())
bindListObject.os = value["Os"].asString();
if(!value["DirCount"].isNull())
bindListObject.dirCount = value["DirCount"].asString();
if(!value["ServiceStatus"].isNull())
bindListObject.serviceStatus = value["ServiceStatus"].asString();
if(!value["ServiceCode"].isNull())
bindListObject.serviceCode = value["ServiceCode"].asString();
if(!value["ServiceDetail"].isNull())
bindListObject.serviceDetail = value["ServiceDetail"].asString();
if(!value["Status"].isNull())
bindListObject.status = value["Status"].asString();
bindList_.push_back(bindListObject);
}
if(!value["PageSize"].isNull())
pageSize_ = std::stoi(value["PageSize"].asString());
if(!value["CurrentPage"].isNull())
currentPage_ = std::stoi(value["CurrentPage"].asString());
if(!value["TotalCount"].isNull())
totalCount_ = std::stoi(value["TotalCount"].asString());
}
int DescribeWebLockBindListResult::getTotalCount()const
{
return totalCount_;
}
int DescribeWebLockBindListResult::getPageSize()const
{
return pageSize_;
}
int DescribeWebLockBindListResult::getCurrentPage()const
{
return currentPage_;
}
std::vector<DescribeWebLockBindListResult::Bind> DescribeWebLockBindListResult::getBindList()const
{
return bindList_;
}