This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lex-models/source/model/PutBotResult.cpp

177 lines
3.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/lex-models/model/PutBotResult.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/AmazonWebServiceResult.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/UnreferencedParam.h>
#include <utility>
using namespace Aws::LexModelBuildingService::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
using namespace Aws;
PutBotResult::PutBotResult() :
m_enableModelImprovements(false),
m_nluIntentConfidenceThreshold(0.0),
m_status(Status::NOT_SET),
m_idleSessionTTLInSeconds(0),
m_locale(Locale::NOT_SET),
m_childDirected(false),
m_createVersion(false),
m_detectSentiment(false)
{
}
PutBotResult::PutBotResult(const Aws::AmazonWebServiceResult<JsonValue>& result) :
m_enableModelImprovements(false),
m_nluIntentConfidenceThreshold(0.0),
m_status(Status::NOT_SET),
m_idleSessionTTLInSeconds(0),
m_locale(Locale::NOT_SET),
m_childDirected(false),
m_createVersion(false),
m_detectSentiment(false)
{
*this = result;
}
PutBotResult& PutBotResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
JsonView jsonValue = result.GetPayload().View();
if(jsonValue.ValueExists("name"))
{
m_name = jsonValue.GetString("name");
}
if(jsonValue.ValueExists("description"))
{
m_description = jsonValue.GetString("description");
}
if(jsonValue.ValueExists("intents"))
{
Array<JsonView> intentsJsonList = jsonValue.GetArray("intents");
for(unsigned intentsIndex = 0; intentsIndex < intentsJsonList.GetLength(); ++intentsIndex)
{
m_intents.push_back(intentsJsonList[intentsIndex].AsObject());
}
}
if(jsonValue.ValueExists("enableModelImprovements"))
{
m_enableModelImprovements = jsonValue.GetBool("enableModelImprovements");
}
if(jsonValue.ValueExists("nluIntentConfidenceThreshold"))
{
m_nluIntentConfidenceThreshold = jsonValue.GetDouble("nluIntentConfidenceThreshold");
}
if(jsonValue.ValueExists("clarificationPrompt"))
{
m_clarificationPrompt = jsonValue.GetObject("clarificationPrompt");
}
if(jsonValue.ValueExists("abortStatement"))
{
m_abortStatement = jsonValue.GetObject("abortStatement");
}
if(jsonValue.ValueExists("status"))
{
m_status = StatusMapper::GetStatusForName(jsonValue.GetString("status"));
}
if(jsonValue.ValueExists("failureReason"))
{
m_failureReason = jsonValue.GetString("failureReason");
}
if(jsonValue.ValueExists("lastUpdatedDate"))
{
m_lastUpdatedDate = jsonValue.GetDouble("lastUpdatedDate");
}
if(jsonValue.ValueExists("createdDate"))
{
m_createdDate = jsonValue.GetDouble("createdDate");
}
if(jsonValue.ValueExists("idleSessionTTLInSeconds"))
{
m_idleSessionTTLInSeconds = jsonValue.GetInteger("idleSessionTTLInSeconds");
}
if(jsonValue.ValueExists("voiceId"))
{
m_voiceId = jsonValue.GetString("voiceId");
}
if(jsonValue.ValueExists("checksum"))
{
m_checksum = jsonValue.GetString("checksum");
}
if(jsonValue.ValueExists("version"))
{
m_version = jsonValue.GetString("version");
}
if(jsonValue.ValueExists("locale"))
{
m_locale = LocaleMapper::GetLocaleForName(jsonValue.GetString("locale"));
}
if(jsonValue.ValueExists("childDirected"))
{
m_childDirected = jsonValue.GetBool("childDirected");
}
if(jsonValue.ValueExists("createVersion"))
{
m_createVersion = jsonValue.GetBool("createVersion");
}
if(jsonValue.ValueExists("detectSentiment"))
{
m_detectSentiment = jsonValue.GetBool("detectSentiment");
}
if(jsonValue.ValueExists("tags"))
{
Array<JsonView> tagsJsonList = jsonValue.GetArray("tags");
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
{
m_tags.push_back(tagsJsonList[tagsIndex].AsObject());
}
}
return *this;
}