87 lines
2.1 KiB
C++
87 lines
2.1 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/qianzhou/model/AICreateSessionMessageResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Qianzhou;
|
|
using namespace AlibabaCloud::Qianzhou::Model;
|
|
|
|
AICreateSessionMessageResult::AICreateSessionMessageResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
AICreateSessionMessageResult::AICreateSessionMessageResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
AICreateSessionMessageResult::~AICreateSessionMessageResult()
|
|
{}
|
|
|
|
void AICreateSessionMessageResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
if(!value["answer"].isNull())
|
|
answer_ = value["answer"].asString();
|
|
if(!value["session_id"].isNull())
|
|
session_id_ = value["session_id"].asString();
|
|
if(!value["requestId"].isNull())
|
|
requestId_ = value["requestId"].asString();
|
|
if(!value["code"].isNull())
|
|
code_ = std::stol(value["code"].asString());
|
|
if(!value["data"].isNull())
|
|
data_ = value["data"].asString();
|
|
if(!value["msg"].isNull())
|
|
msg_ = value["msg"].asString();
|
|
|
|
}
|
|
|
|
std::string AICreateSessionMessageResult::getMsg()const
|
|
{
|
|
return msg_;
|
|
}
|
|
|
|
std::string AICreateSessionMessageResult::getAnswer()const
|
|
{
|
|
return answer_;
|
|
}
|
|
|
|
std::string AICreateSessionMessageResult::getRequestId()const
|
|
{
|
|
return requestId_;
|
|
}
|
|
|
|
std::string AICreateSessionMessageResult::getData()const
|
|
{
|
|
return data_;
|
|
}
|
|
|
|
std::string AICreateSessionMessageResult::getSession_id()const
|
|
{
|
|
return session_id_;
|
|
}
|
|
|
|
long AICreateSessionMessageResult::getCode()const
|
|
{
|
|
return code_;
|
|
}
|
|
|