LUBANCLOUD SDK Auto Released By benxiang.hhq,Version:1.30.0
Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
This commit is contained in:
103
lubancloud/src/model/QueryGenerateTaskResultResult.cc
Normal file
103
lubancloud/src/model/QueryGenerateTaskResultResult.cc
Normal file
@@ -0,0 +1,103 @@
|
||||
/*
|
||||
* 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/lubancloud/model/QueryGenerateTaskResultResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Lubancloud;
|
||||
using namespace AlibabaCloud::Lubancloud::Model;
|
||||
|
||||
QueryGenerateTaskResultResult::QueryGenerateTaskResultResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
QueryGenerateTaskResultResult::QueryGenerateTaskResultResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
QueryGenerateTaskResultResult::~QueryGenerateTaskResultResult()
|
||||
{}
|
||||
|
||||
void QueryGenerateTaskResultResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allPictures = value["Pictures"]["Picture"];
|
||||
for (auto value : allPictures)
|
||||
{
|
||||
Picture picturesObject;
|
||||
if(!value["Id"].isNull())
|
||||
picturesObject.id = std::stol(value["Id"].asString());
|
||||
if(!value["Name"].isNull())
|
||||
picturesObject.name = value["Name"].asString();
|
||||
if(!value["PreviewUrl"].isNull())
|
||||
picturesObject.previewUrl = value["PreviewUrl"].asString();
|
||||
if(!value["Width"].isNull())
|
||||
picturesObject.width = std::stoi(value["Width"].asString());
|
||||
if(!value["Height"].isNull())
|
||||
picturesObject.height = std::stoi(value["Height"].asString());
|
||||
if(!value["Status"].isNull())
|
||||
picturesObject.status = std::stoi(value["Status"].asString());
|
||||
pictures_.push_back(picturesObject);
|
||||
}
|
||||
if(!value["TotalSize"].isNull())
|
||||
totalSize_ = std::stoi(value["TotalSize"].asString());
|
||||
if(!value["WaitSize"].isNull())
|
||||
waitSize_ = std::stoi(value["WaitSize"].asString());
|
||||
if(!value["SuccessSize"].isNull())
|
||||
successSize_ = std::stoi(value["SuccessSize"].asString());
|
||||
if(!value["FailSize"].isNull())
|
||||
failSize_ = std::stoi(value["FailSize"].asString());
|
||||
if(!value["Status"].isNull())
|
||||
status_ = std::stoi(value["Status"].asString());
|
||||
|
||||
}
|
||||
|
||||
std::vector<QueryGenerateTaskResultResult::Picture> QueryGenerateTaskResultResult::getPictures()const
|
||||
{
|
||||
return pictures_;
|
||||
}
|
||||
|
||||
int QueryGenerateTaskResultResult::getStatus()const
|
||||
{
|
||||
return status_;
|
||||
}
|
||||
|
||||
int QueryGenerateTaskResultResult::getSuccessSize()const
|
||||
{
|
||||
return successSize_;
|
||||
}
|
||||
|
||||
int QueryGenerateTaskResultResult::getFailSize()const
|
||||
{
|
||||
return failSize_;
|
||||
}
|
||||
|
||||
int QueryGenerateTaskResultResult::getTotalSize()const
|
||||
{
|
||||
return totalSize_;
|
||||
}
|
||||
|
||||
int QueryGenerateTaskResultResult::getWaitSize()const
|
||||
{
|
||||
return waitSize_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user