/** * 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 Inspector2 { namespace Model { FreeTrialInfo::FreeTrialInfo() : m_endHasBeenSet(false), m_startHasBeenSet(false), m_status(FreeTrialStatus::NOT_SET), m_statusHasBeenSet(false), m_type(FreeTrialType::NOT_SET), m_typeHasBeenSet(false) { } FreeTrialInfo::FreeTrialInfo(JsonView jsonValue) : m_endHasBeenSet(false), m_startHasBeenSet(false), m_status(FreeTrialStatus::NOT_SET), m_statusHasBeenSet(false), m_type(FreeTrialType::NOT_SET), m_typeHasBeenSet(false) { *this = jsonValue; } FreeTrialInfo& FreeTrialInfo::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("end")) { m_end = jsonValue.GetDouble("end"); m_endHasBeenSet = true; } if(jsonValue.ValueExists("start")) { m_start = jsonValue.GetDouble("start"); m_startHasBeenSet = true; } if(jsonValue.ValueExists("status")) { m_status = FreeTrialStatusMapper::GetFreeTrialStatusForName(jsonValue.GetString("status")); m_statusHasBeenSet = true; } if(jsonValue.ValueExists("type")) { m_type = FreeTrialTypeMapper::GetFreeTrialTypeForName(jsonValue.GetString("type")); m_typeHasBeenSet = true; } return *this; } JsonValue FreeTrialInfo::Jsonize() const { JsonValue payload; if(m_endHasBeenSet) { payload.WithDouble("end", m_end.SecondsWithMSPrecision()); } if(m_startHasBeenSet) { payload.WithDouble("start", m_start.SecondsWithMSPrecision()); } if(m_statusHasBeenSet) { payload.WithString("status", FreeTrialStatusMapper::GetNameForFreeTrialStatus(m_status)); } if(m_typeHasBeenSet) { payload.WithString("type", FreeTrialTypeMapper::GetNameForFreeTrialType(m_type)); } return payload; } } // namespace Model } // namespace Inspector2 } // namespace Aws