/** * 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 { CurrentMetricResult::CurrentMetricResult() : m_dimensionsHasBeenSet(false), m_collectionsHasBeenSet(false) { } CurrentMetricResult::CurrentMetricResult(JsonView jsonValue) : m_dimensionsHasBeenSet(false), m_collectionsHasBeenSet(false) { *this = jsonValue; } CurrentMetricResult& CurrentMetricResult::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Dimensions")) { m_dimensions = jsonValue.GetObject("Dimensions"); 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 CurrentMetricResult::Jsonize() const { JsonValue payload; if(m_dimensionsHasBeenSet) { payload.WithObject("Dimensions", m_dimensions.Jsonize()); } 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