128 lines
2.6 KiB
C++
128 lines
2.6 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/pinpoint/model/SMSTemplateRequest.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
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
SMSTemplateRequest::SMSTemplateRequest() :
|
|||
|
|
m_bodyHasBeenSet(false),
|
|||
|
|
m_defaultSubstitutionsHasBeenSet(false),
|
|||
|
|
m_recommenderIdHasBeenSet(false),
|
|||
|
|
m_tagsHasBeenSet(false),
|
|||
|
|
m_templateDescriptionHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
SMSTemplateRequest::SMSTemplateRequest(JsonView jsonValue) :
|
|||
|
|
m_bodyHasBeenSet(false),
|
|||
|
|
m_defaultSubstitutionsHasBeenSet(false),
|
|||
|
|
m_recommenderIdHasBeenSet(false),
|
|||
|
|
m_tagsHasBeenSet(false),
|
|||
|
|
m_templateDescriptionHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
SMSTemplateRequest& SMSTemplateRequest::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("Body"))
|
|||
|
|
{
|
|||
|
|
m_body = jsonValue.GetString("Body");
|
|||
|
|
|
|||
|
|
m_bodyHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("DefaultSubstitutions"))
|
|||
|
|
{
|
|||
|
|
m_defaultSubstitutions = jsonValue.GetString("DefaultSubstitutions");
|
|||
|
|
|
|||
|
|
m_defaultSubstitutionsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("RecommenderId"))
|
|||
|
|
{
|
|||
|
|
m_recommenderId = jsonValue.GetString("RecommenderId");
|
|||
|
|
|
|||
|
|
m_recommenderIdHasBeenSet = 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;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue SMSTemplateRequest::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_bodyHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Body", m_body);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_defaultSubstitutionsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("DefaultSubstitutions", m_defaultSubstitutions);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_recommenderIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("RecommenderId", m_recommenderId);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Pinpoint
|
|||
|
|
} // namespace Aws
|