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/TreatmentResource.cpp

182 lines
3.8 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/pinpoint/model/TreatmentResource.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
{
TreatmentResource::TreatmentResource() :
m_customDeliveryConfigurationHasBeenSet(false),
m_idHasBeenSet(false),
m_messageConfigurationHasBeenSet(false),
m_scheduleHasBeenSet(false),
m_sizePercent(0),
m_sizePercentHasBeenSet(false),
m_stateHasBeenSet(false),
m_templateConfigurationHasBeenSet(false),
m_treatmentDescriptionHasBeenSet(false),
m_treatmentNameHasBeenSet(false)
{
}
TreatmentResource::TreatmentResource(JsonView jsonValue) :
m_customDeliveryConfigurationHasBeenSet(false),
m_idHasBeenSet(false),
m_messageConfigurationHasBeenSet(false),
m_scheduleHasBeenSet(false),
m_sizePercent(0),
m_sizePercentHasBeenSet(false),
m_stateHasBeenSet(false),
m_templateConfigurationHasBeenSet(false),
m_treatmentDescriptionHasBeenSet(false),
m_treatmentNameHasBeenSet(false)
{
*this = jsonValue;
}
TreatmentResource& TreatmentResource::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("CustomDeliveryConfiguration"))
{
m_customDeliveryConfiguration = jsonValue.GetObject("CustomDeliveryConfiguration");
m_customDeliveryConfigurationHasBeenSet = true;
}
if(jsonValue.ValueExists("Id"))
{
m_id = jsonValue.GetString("Id");
m_idHasBeenSet = true;
}
if(jsonValue.ValueExists("MessageConfiguration"))
{
m_messageConfiguration = jsonValue.GetObject("MessageConfiguration");
m_messageConfigurationHasBeenSet = true;
}
if(jsonValue.ValueExists("Schedule"))
{
m_schedule = jsonValue.GetObject("Schedule");
m_scheduleHasBeenSet = true;
}
if(jsonValue.ValueExists("SizePercent"))
{
m_sizePercent = jsonValue.GetInteger("SizePercent");
m_sizePercentHasBeenSet = true;
}
if(jsonValue.ValueExists("State"))
{
m_state = jsonValue.GetObject("State");
m_stateHasBeenSet = true;
}
if(jsonValue.ValueExists("TemplateConfiguration"))
{
m_templateConfiguration = jsonValue.GetObject("TemplateConfiguration");
m_templateConfigurationHasBeenSet = true;
}
if(jsonValue.ValueExists("TreatmentDescription"))
{
m_treatmentDescription = jsonValue.GetString("TreatmentDescription");
m_treatmentDescriptionHasBeenSet = true;
}
if(jsonValue.ValueExists("TreatmentName"))
{
m_treatmentName = jsonValue.GetString("TreatmentName");
m_treatmentNameHasBeenSet = true;
}
return *this;
}
JsonValue TreatmentResource::Jsonize() const
{
JsonValue payload;
if(m_customDeliveryConfigurationHasBeenSet)
{
payload.WithObject("CustomDeliveryConfiguration", m_customDeliveryConfiguration.Jsonize());
}
if(m_idHasBeenSet)
{
payload.WithString("Id", m_id);
}
if(m_messageConfigurationHasBeenSet)
{
payload.WithObject("MessageConfiguration", m_messageConfiguration.Jsonize());
}
if(m_scheduleHasBeenSet)
{
payload.WithObject("Schedule", m_schedule.Jsonize());
}
if(m_sizePercentHasBeenSet)
{
payload.WithInteger("SizePercent", m_sizePercent);
}
if(m_stateHasBeenSet)
{
payload.WithObject("State", m_state.Jsonize());
}
if(m_templateConfigurationHasBeenSet)
{
payload.WithObject("TemplateConfiguration", m_templateConfiguration.Jsonize());
}
if(m_treatmentDescriptionHasBeenSet)
{
payload.WithString("TreatmentDescription", m_treatmentDescription);
}
if(m_treatmentNameHasBeenSet)
{
payload.WithString("TreatmentName", m_treatmentName);
}
return payload;
}
} // namespace Model
} // namespace Pinpoint
} // namespace Aws