107 lines
2.5 KiB
C++
107 lines
2.5 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/linkface/model/QueryGroupUsersResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::LinkFace;
|
|
using namespace AlibabaCloud::LinkFace::Model;
|
|
|
|
QueryGroupUsersResult::QueryGroupUsersResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
QueryGroupUsersResult::QueryGroupUsersResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
QueryGroupUsersResult::~QueryGroupUsersResult()
|
|
{}
|
|
|
|
void QueryGroupUsersResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
auto allData = value["Data"]["DataItem"];
|
|
for (auto value : allData)
|
|
{
|
|
DataItem dataObject;
|
|
if(!value["UserId"].isNull())
|
|
dataObject.userId = value["UserId"].asString();
|
|
data_.push_back(dataObject);
|
|
}
|
|
if(!value["Code"].isNull())
|
|
code_ = std::stoi(value["Code"].asString());
|
|
if(!value["Message"].isNull())
|
|
message_ = value["Message"].asString();
|
|
if(!value["PageCount"].isNull())
|
|
pageCount_ = std::stoi(value["PageCount"].asString());
|
|
if(!value["PageSize"].isNull())
|
|
pageSize_ = std::stoi(value["PageSize"].asString());
|
|
if(!value["Page"].isNull())
|
|
page_ = std::stoi(value["Page"].asString());
|
|
if(!value["Total"].isNull())
|
|
total_ = std::stoi(value["Total"].asString());
|
|
if(!value["Success"].isNull())
|
|
success_ = value["Success"].asString() == "true";
|
|
|
|
}
|
|
|
|
std::string QueryGroupUsersResult::getMessage()const
|
|
{
|
|
return message_;
|
|
}
|
|
|
|
int QueryGroupUsersResult::getPageCount()const
|
|
{
|
|
return pageCount_;
|
|
}
|
|
|
|
int QueryGroupUsersResult::getPageSize()const
|
|
{
|
|
return pageSize_;
|
|
}
|
|
|
|
int QueryGroupUsersResult::getTotal()const
|
|
{
|
|
return total_;
|
|
}
|
|
|
|
std::vector<QueryGroupUsersResult::DataItem> QueryGroupUsersResult::getData()const
|
|
{
|
|
return data_;
|
|
}
|
|
|
|
int QueryGroupUsersResult::getPage()const
|
|
{
|
|
return page_;
|
|
}
|
|
|
|
int QueryGroupUsersResult::getCode()const
|
|
{
|
|
return code_;
|
|
}
|
|
|
|
bool QueryGroupUsersResult::getSuccess()const
|
|
{
|
|
return success_;
|
|
}
|
|
|