101 lines
2.4 KiB
C++
101 lines
2.4 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/imm/model/CreateSetResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Imm;
|
|
using namespace AlibabaCloud::Imm::Model;
|
|
|
|
CreateSetResult::CreateSetResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
CreateSetResult::CreateSetResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
CreateSetResult::~CreateSetResult()
|
|
{}
|
|
|
|
void CreateSetResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
if(!value["ModifyTime"].isNull())
|
|
modifyTime_ = value["ModifyTime"].asString();
|
|
if(!value["VideoCount"].isNull())
|
|
videoCount_ = std::stoi(value["VideoCount"].asString());
|
|
if(!value["ImageCount"].isNull())
|
|
imageCount_ = std::stoi(value["ImageCount"].asString());
|
|
if(!value["CreateTime"].isNull())
|
|
createTime_ = value["CreateTime"].asString();
|
|
if(!value["SetName"].isNull())
|
|
setName_ = value["SetName"].asString();
|
|
if(!value["SetId"].isNull())
|
|
setId_ = value["SetId"].asString();
|
|
if(!value["VideoLength"].isNull())
|
|
videoLength_ = std::stoi(value["VideoLength"].asString());
|
|
if(!value["FaceCount"].isNull())
|
|
faceCount_ = std::stoi(value["FaceCount"].asString());
|
|
|
|
}
|
|
|
|
std::string CreateSetResult::getModifyTime()const
|
|
{
|
|
return modifyTime_;
|
|
}
|
|
|
|
int CreateSetResult::getVideoCount()const
|
|
{
|
|
return videoCount_;
|
|
}
|
|
|
|
int CreateSetResult::getImageCount()const
|
|
{
|
|
return imageCount_;
|
|
}
|
|
|
|
std::string CreateSetResult::getCreateTime()const
|
|
{
|
|
return createTime_;
|
|
}
|
|
|
|
std::string CreateSetResult::getSetName()const
|
|
{
|
|
return setName_;
|
|
}
|
|
|
|
std::string CreateSetResult::getSetId()const
|
|
{
|
|
return setId_;
|
|
}
|
|
|
|
int CreateSetResult::getVideoLength()const
|
|
{
|
|
return videoLength_;
|
|
}
|
|
|
|
int CreateSetResult::getFaceCount()const
|
|
{
|
|
return faceCount_;
|
|
}
|
|
|