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-pinpoint/source/model/EmailTemplateResponse.cpp

249 lines
5.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/pinpoint/model/EmailTemplateResponse.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Pinpoint
{
namespace Model
{
EmailTemplateResponse::EmailTemplateResponse() :
m_arnHasBeenSet(false),
m_creationDateHasBeenSet(false),
m_defaultSubstitutionsHasBeenSet(false),
m_htmlPartHasBeenSet(false),
m_lastModifiedDateHasBeenSet(false),
m_recommenderIdHasBeenSet(false),
m_subjectHasBeenSet(false),
m_tagsHasBeenSet(false),
m_templateDescriptionHasBeenSet(false),
m_templateNameHasBeenSet(false),
m_templateType(TemplateType::NOT_SET),
m_templateTypeHasBeenSet(false),
m_textPartHasBeenSet(false),
m_versionHasBeenSet(false)
{
}
EmailTemplateResponse::EmailTemplateResponse(JsonView jsonValue) :
m_arnHasBeenSet(false),
m_creationDateHasBeenSet(false),
m_defaultSubstitutionsHasBeenSet(false),
m_htmlPartHasBeenSet(false),
m_lastModifiedDateHasBeenSet(false),
m_recommenderIdHasBeenSet(false),
m_subjectHasBeenSet(false),
m_tagsHasBeenSet(false),
m_templateDescriptionHasBeenSet(false),
m_templateNameHasBeenSet(false),
m_templateType(TemplateType::NOT_SET),
m_templateTypeHasBeenSet(false),
m_textPartHasBeenSet(false),
m_versionHasBeenSet(false)
{
*this = jsonValue;
}
EmailTemplateResponse& EmailTemplateResponse::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Arn"))
{
m_arn = jsonValue.GetString("Arn");
m_arnHasBeenSet = true;
}
if(jsonValue.ValueExists("CreationDate"))
{
m_creationDate = jsonValue.GetString("CreationDate");
m_creationDateHasBeenSet = true;
}
if(jsonValue.ValueExists("DefaultSubstitutions"))
{
m_defaultSubstitutions = jsonValue.GetString("DefaultSubstitutions");
m_defaultSubstitutionsHasBeenSet = true;
}
if(jsonValue.ValueExists("HtmlPart"))
{
m_htmlPart = jsonValue.GetString("HtmlPart");
m_htmlPartHasBeenSet = true;
}
if(jsonValue.ValueExists("LastModifiedDate"))
{
m_lastModifiedDate = jsonValue.GetString("LastModifiedDate");
m_lastModifiedDateHasBeenSet = true;
}
if(jsonValue.ValueExists("RecommenderId"))
{
m_recommenderId = jsonValue.GetString("RecommenderId");
m_recommenderIdHasBeenSet = true;
}
if(jsonValue.ValueExists("Subject"))
{
m_subject = jsonValue.GetString("Subject");
m_subjectHasBeenSet = true;
}
if(jsonValue.ValueExists("tags"))
{
Aws::Map<Aws::String, JsonView> tagsJsonMap = jsonValue.GetObject("tags").GetAllObjects();
for(auto& tagsItem : tagsJsonMap)
{
m_tags[tagsItem.first] = tagsItem.second.AsString();
}
m_tagsHasBeenSet = true;
}
if(jsonValue.ValueExists("TemplateDescription"))
{
m_templateDescription = jsonValue.GetString("TemplateDescription");
m_templateDescriptionHasBeenSet = true;
}
if(jsonValue.ValueExists("TemplateName"))
{
m_templateName = jsonValue.GetString("TemplateName");
m_templateNameHasBeenSet = true;
}
if(jsonValue.ValueExists("TemplateType"))
{
m_templateType = TemplateTypeMapper::GetTemplateTypeForName(jsonValue.GetString("TemplateType"));
m_templateTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("TextPart"))
{
m_textPart = jsonValue.GetString("TextPart");
m_textPartHasBeenSet = true;
}
if(jsonValue.ValueExists("Version"))
{
m_version = jsonValue.GetString("Version");
m_versionHasBeenSet = true;
}
return *this;
}
JsonValue EmailTemplateResponse::Jsonize() const
{
JsonValue payload;
if(m_arnHasBeenSet)
{
payload.WithString("Arn", m_arn);
}
if(m_creationDateHasBeenSet)
{
payload.WithString("CreationDate", m_creationDate);
}
if(m_defaultSubstitutionsHasBeenSet)
{
payload.WithString("DefaultSubstitutions", m_defaultSubstitutions);
}
if(m_htmlPartHasBeenSet)
{
payload.WithString("HtmlPart", m_htmlPart);
}
if(m_lastModifiedDateHasBeenSet)
{
payload.WithString("LastModifiedDate", m_lastModifiedDate);
}
if(m_recommenderIdHasBeenSet)
{
payload.WithString("RecommenderId", m_recommenderId);
}
if(m_subjectHasBeenSet)
{
payload.WithString("Subject", m_subject);
}
if(m_tagsHasBeenSet)
{
JsonValue tagsJsonMap;
for(auto& tagsItem : m_tags)
{
tagsJsonMap.WithString(tagsItem.first, tagsItem.second);
}
payload.WithObject("tags", std::move(tagsJsonMap));
}
if(m_templateDescriptionHasBeenSet)
{
payload.WithString("TemplateDescription", m_templateDescription);
}
if(m_templateNameHasBeenSet)
{
payload.WithString("TemplateName", m_templateName);
}
if(m_templateTypeHasBeenSet)
{
payload.WithString("TemplateType", TemplateTypeMapper::GetNameForTemplateType(m_templateType));
}
if(m_textPartHasBeenSet)
{
payload.WithString("TextPart", m_textPart);
}
if(m_versionHasBeenSet)
{
payload.WithString("Version", m_version);
}
return payload;
}
} // namespace Model
} // namespace Pinpoint
} // namespace Aws