/** * 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 DeviceFarm { namespace Model { DeviceSelectionResult::DeviceSelectionResult() : m_filtersHasBeenSet(false), m_matchedDevicesCount(0), m_matchedDevicesCountHasBeenSet(false), m_maxDevices(0), m_maxDevicesHasBeenSet(false) { } DeviceSelectionResult::DeviceSelectionResult(JsonView jsonValue) : m_filtersHasBeenSet(false), m_matchedDevicesCount(0), m_matchedDevicesCountHasBeenSet(false), m_maxDevices(0), m_maxDevicesHasBeenSet(false) { *this = jsonValue; } DeviceSelectionResult& DeviceSelectionResult::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("filters")) { Aws::Utils::Array filtersJsonList = jsonValue.GetArray("filters"); for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex) { m_filters.push_back(filtersJsonList[filtersIndex].AsObject()); } m_filtersHasBeenSet = true; } if(jsonValue.ValueExists("matchedDevicesCount")) { m_matchedDevicesCount = jsonValue.GetInteger("matchedDevicesCount"); m_matchedDevicesCountHasBeenSet = true; } if(jsonValue.ValueExists("maxDevices")) { m_maxDevices = jsonValue.GetInteger("maxDevices"); m_maxDevicesHasBeenSet = true; } return *this; } JsonValue DeviceSelectionResult::Jsonize() const { JsonValue payload; if(m_filtersHasBeenSet) { Aws::Utils::Array filtersJsonList(m_filters.size()); for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex) { filtersJsonList[filtersIndex].AsObject(m_filters[filtersIndex].Jsonize()); } payload.WithArray("filters", std::move(filtersJsonList)); } if(m_matchedDevicesCountHasBeenSet) { payload.WithInteger("matchedDevicesCount", m_matchedDevicesCount); } if(m_maxDevicesHasBeenSet) { payload.WithInteger("maxDevices", m_maxDevices); } return payload; } } // namespace Model } // namespace DeviceFarm } // namespace Aws