/** * 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 { QuietTime::QuietTime() : m_endHasBeenSet(false), m_startHasBeenSet(false) { } QuietTime::QuietTime(JsonView jsonValue) : m_endHasBeenSet(false), m_startHasBeenSet(false) { *this = jsonValue; } QuietTime& QuietTime::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("End")) { m_end = jsonValue.GetString("End"); m_endHasBeenSet = true; } if(jsonValue.ValueExists("Start")) { m_start = jsonValue.GetString("Start"); m_startHasBeenSet = true; } return *this; } JsonValue QuietTime::Jsonize() const { JsonValue payload; if(m_endHasBeenSet) { payload.WithString("End", m_end); } if(m_startHasBeenSet) { payload.WithString("Start", m_start); } return payload; } } // namespace Model } // namespace Pinpoint } // namespace Aws