Add IoT Studio SetStudioProjectCooperation API.

This commit is contained in:
sdk-team
2021-05-18 12:13:08 +00:00
parent 73fc4a65dc
commit c74e24f508
93 changed files with 8153 additions and 4 deletions

View File

@@ -0,0 +1,95 @@
/*
* 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/iot/model/QueryStudioProjectListResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Iot;
using namespace AlibabaCloud::Iot::Model;
QueryStudioProjectListResult::QueryStudioProjectListResult() :
ServiceResult()
{}
QueryStudioProjectListResult::QueryStudioProjectListResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
QueryStudioProjectListResult::~QueryStudioProjectListResult()
{}
void QueryStudioProjectListResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto dataNode = value["Data"];
if(!dataNode["PageNo"].isNull())
data_.pageNo = std::stoi(dataNode["PageNo"].asString());
if(!dataNode["PageSize"].isNull())
data_.pageSize = std::stoi(dataNode["PageSize"].asString());
if(!dataNode["Total"].isNull())
data_.total = std::stoi(dataNode["Total"].asString());
if(!dataNode["TotalPage"].isNull())
data_.totalPage = std::stoi(dataNode["TotalPage"].asString());
auto allListNode = dataNode["List"]["ProjectInfo"];
for (auto dataNodeListProjectInfo : allListNode)
{
Data::ProjectInfo projectInfoObject;
if(!dataNodeListProjectInfo["GmtCreate"].isNull())
projectInfoObject.gmtCreate = std::stol(dataNodeListProjectInfo["GmtCreate"].asString());
if(!dataNodeListProjectInfo["GmtModified"].isNull())
projectInfoObject.gmtModified = std::stol(dataNodeListProjectInfo["GmtModified"].asString());
if(!dataNodeListProjectInfo["Name"].isNull())
projectInfoObject.name = dataNodeListProjectInfo["Name"].asString();
if(!dataNodeListProjectInfo["ProjectId"].isNull())
projectInfoObject.projectId = dataNodeListProjectInfo["ProjectId"].asString();
if(!dataNodeListProjectInfo["Description"].isNull())
projectInfoObject.description = dataNodeListProjectInfo["Description"].asString();
data_.list.push_back(projectInfoObject);
}
if(!value["Success"].isNull())
success_ = value["Success"].asString() == "true";
if(!value["Code"].isNull())
code_ = value["Code"].asString();
if(!value["ErrorMessage"].isNull())
errorMessage_ = value["ErrorMessage"].asString();
}
QueryStudioProjectListResult::Data QueryStudioProjectListResult::getData()const
{
return data_;
}
std::string QueryStudioProjectListResult::getErrorMessage()const
{
return errorMessage_;
}
std::string QueryStudioProjectListResult::getCode()const
{
return code_;
}
bool QueryStudioProjectListResult::getSuccess()const
{
return success_;
}