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

96 lines
1.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/JourneyLimits.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
{
JourneyLimits::JourneyLimits() :
m_dailyCap(0),
m_dailyCapHasBeenSet(false),
m_endpointReentryCap(0),
m_endpointReentryCapHasBeenSet(false),
m_messagesPerSecond(0),
m_messagesPerSecondHasBeenSet(false)
{
}
JourneyLimits::JourneyLimits(JsonView jsonValue) :
m_dailyCap(0),
m_dailyCapHasBeenSet(false),
m_endpointReentryCap(0),
m_endpointReentryCapHasBeenSet(false),
m_messagesPerSecond(0),
m_messagesPerSecondHasBeenSet(false)
{
*this = jsonValue;
}
JourneyLimits& JourneyLimits::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("DailyCap"))
{
m_dailyCap = jsonValue.GetInteger("DailyCap");
m_dailyCapHasBeenSet = true;
}
if(jsonValue.ValueExists("EndpointReentryCap"))
{
m_endpointReentryCap = jsonValue.GetInteger("EndpointReentryCap");
m_endpointReentryCapHasBeenSet = true;
}
if(jsonValue.ValueExists("MessagesPerSecond"))
{
m_messagesPerSecond = jsonValue.GetInteger("MessagesPerSecond");
m_messagesPerSecondHasBeenSet = true;
}
return *this;
}
JsonValue JourneyLimits::Jsonize() const
{
JsonValue payload;
if(m_dailyCapHasBeenSet)
{
payload.WithInteger("DailyCap", m_dailyCap);
}
if(m_endpointReentryCapHasBeenSet)
{
payload.WithInteger("EndpointReentryCap", m_endpointReentryCap);
}
if(m_messagesPerSecondHasBeenSet)
{
payload.WithInteger("MessagesPerSecond", m_messagesPerSecond);
}
return payload;
}
} // namespace Model
} // namespace Pinpoint
} // namespace Aws