/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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