/** * 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 Lightsail { namespace Model { TimePeriod::TimePeriod() : m_startHasBeenSet(false), m_endHasBeenSet(false) { } TimePeriod::TimePeriod(JsonView jsonValue) : m_startHasBeenSet(false), m_endHasBeenSet(false) { *this = jsonValue; } TimePeriod& TimePeriod::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("start")) { m_start = jsonValue.GetDouble("start"); m_startHasBeenSet = true; } if(jsonValue.ValueExists("end")) { m_end = jsonValue.GetDouble("end"); m_endHasBeenSet = true; } return *this; } JsonValue TimePeriod::Jsonize() const { JsonValue payload; if(m_startHasBeenSet) { payload.WithDouble("start", m_start.SecondsWithMSPrecision()); } if(m_endHasBeenSet) { payload.WithDouble("end", m_end.SecondsWithMSPrecision()); } return payload; } } // namespace Model } // namespace Lightsail } // namespace Aws