/** * 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 Connect { namespace Model { MetricResultV2::MetricResultV2() : m_dimensionsHasBeenSet(false), m_collectionsHasBeenSet(false) { } MetricResultV2::MetricResultV2(JsonView jsonValue) : m_dimensionsHasBeenSet(false), m_collectionsHasBeenSet(false) { *this = jsonValue; } MetricResultV2& MetricResultV2::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Dimensions")) { Aws::Map dimensionsJsonMap = jsonValue.GetObject("Dimensions").GetAllObjects(); for(auto& dimensionsItem : dimensionsJsonMap) { m_dimensions[dimensionsItem.first] = dimensionsItem.second.AsString(); } m_dimensionsHasBeenSet = true; } if(jsonValue.ValueExists("Collections")) { Aws::Utils::Array collectionsJsonList = jsonValue.GetArray("Collections"); for(unsigned collectionsIndex = 0; collectionsIndex < collectionsJsonList.GetLength(); ++collectionsIndex) { m_collections.push_back(collectionsJsonList[collectionsIndex].AsObject()); } m_collectionsHasBeenSet = true; } return *this; } JsonValue MetricResultV2::Jsonize() const { JsonValue payload; if(m_dimensionsHasBeenSet) { JsonValue dimensionsJsonMap; for(auto& dimensionsItem : m_dimensions) { dimensionsJsonMap.WithString(dimensionsItem.first, dimensionsItem.second); } payload.WithObject("Dimensions", std::move(dimensionsJsonMap)); } if(m_collectionsHasBeenSet) { Aws::Utils::Array collectionsJsonList(m_collections.size()); for(unsigned collectionsIndex = 0; collectionsIndex < collectionsJsonList.GetLength(); ++collectionsIndex) { collectionsJsonList[collectionsIndex].AsObject(m_collections[collectionsIndex].Jsonize()); } payload.WithArray("Collections", std::move(collectionsJsonList)); } return payload; } } // namespace Model } // namespace Connect } // namespace Aws