/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/iotsitewise/model/AssetModelHierarchy.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace IoTSiteWise { namespace Model { AssetModelHierarchy::AssetModelHierarchy() : m_idHasBeenSet(false), m_nameHasBeenSet(false), m_childAssetModelIdHasBeenSet(false) { } AssetModelHierarchy::AssetModelHierarchy(JsonView jsonValue) : m_idHasBeenSet(false), m_nameHasBeenSet(false), m_childAssetModelIdHasBeenSet(false) { *this = jsonValue; } AssetModelHierarchy& AssetModelHierarchy::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("id")) { m_id = jsonValue.GetString("id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("name")) { m_name = jsonValue.GetString("name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("childAssetModelId")) { m_childAssetModelId = jsonValue.GetString("childAssetModelId"); m_childAssetModelIdHasBeenSet = true; } return *this; } JsonValue AssetModelHierarchy::Jsonize() const { JsonValue payload; if(m_idHasBeenSet) { payload.WithString("id", m_id); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_childAssetModelIdHasBeenSet) { payload.WithString("childAssetModelId", m_childAssetModelId); } return payload; } } // namespace Model } // namespace IoTSiteWise } // namespace Aws