/** * 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 QuickSight { namespace Model { Theme::Theme() : m_arnHasBeenSet(false), m_nameHasBeenSet(false), m_themeIdHasBeenSet(false), m_versionHasBeenSet(false), m_createdTimeHasBeenSet(false), m_lastUpdatedTimeHasBeenSet(false), m_type(ThemeType::NOT_SET), m_typeHasBeenSet(false) { } Theme::Theme(JsonView jsonValue) : m_arnHasBeenSet(false), m_nameHasBeenSet(false), m_themeIdHasBeenSet(false), m_versionHasBeenSet(false), m_createdTimeHasBeenSet(false), m_lastUpdatedTimeHasBeenSet(false), m_type(ThemeType::NOT_SET), m_typeHasBeenSet(false) { *this = jsonValue; } Theme& Theme::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Arn")) { m_arn = jsonValue.GetString("Arn"); m_arnHasBeenSet = true; } if(jsonValue.ValueExists("Name")) { m_name = jsonValue.GetString("Name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("ThemeId")) { m_themeId = jsonValue.GetString("ThemeId"); m_themeIdHasBeenSet = true; } if(jsonValue.ValueExists("Version")) { m_version = jsonValue.GetObject("Version"); m_versionHasBeenSet = true; } if(jsonValue.ValueExists("CreatedTime")) { m_createdTime = jsonValue.GetDouble("CreatedTime"); m_createdTimeHasBeenSet = true; } if(jsonValue.ValueExists("LastUpdatedTime")) { m_lastUpdatedTime = jsonValue.GetDouble("LastUpdatedTime"); m_lastUpdatedTimeHasBeenSet = true; } if(jsonValue.ValueExists("Type")) { m_type = ThemeTypeMapper::GetThemeTypeForName(jsonValue.GetString("Type")); m_typeHasBeenSet = true; } return *this; } JsonValue Theme::Jsonize() const { JsonValue payload; if(m_arnHasBeenSet) { payload.WithString("Arn", m_arn); } if(m_nameHasBeenSet) { payload.WithString("Name", m_name); } if(m_themeIdHasBeenSet) { payload.WithString("ThemeId", m_themeId); } if(m_versionHasBeenSet) { payload.WithObject("Version", m_version.Jsonize()); } if(m_createdTimeHasBeenSet) { payload.WithDouble("CreatedTime", m_createdTime.SecondsWithMSPrecision()); } if(m_lastUpdatedTimeHasBeenSet) { payload.WithDouble("LastUpdatedTime", m_lastUpdatedTime.SecondsWithMSPrecision()); } if(m_typeHasBeenSet) { payload.WithString("Type", ThemeTypeMapper::GetNameForThemeType(m_type)); } return payload; } } // namespace Model } // namespace QuickSight } // namespace Aws