/* * 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 #include 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::getBindList()const { return bindList_; }