/** * 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 MTurk { namespace Model { PolicyParameter::PolicyParameter() : m_keyHasBeenSet(false), m_valuesHasBeenSet(false), m_mapEntriesHasBeenSet(false) { } PolicyParameter::PolicyParameter(JsonView jsonValue) : m_keyHasBeenSet(false), m_valuesHasBeenSet(false), m_mapEntriesHasBeenSet(false) { *this = jsonValue; } PolicyParameter& PolicyParameter::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Key")) { m_key = jsonValue.GetString("Key"); m_keyHasBeenSet = true; } if(jsonValue.ValueExists("Values")) { Aws::Utils::Array valuesJsonList = jsonValue.GetArray("Values"); for(unsigned valuesIndex = 0; valuesIndex < valuesJsonList.GetLength(); ++valuesIndex) { m_values.push_back(valuesJsonList[valuesIndex].AsString()); } m_valuesHasBeenSet = true; } if(jsonValue.ValueExists("MapEntries")) { Aws::Utils::Array mapEntriesJsonList = jsonValue.GetArray("MapEntries"); for(unsigned mapEntriesIndex = 0; mapEntriesIndex < mapEntriesJsonList.GetLength(); ++mapEntriesIndex) { m_mapEntries.push_back(mapEntriesJsonList[mapEntriesIndex].AsObject()); } m_mapEntriesHasBeenSet = true; } return *this; } JsonValue PolicyParameter::Jsonize() const { JsonValue payload; if(m_keyHasBeenSet) { payload.WithString("Key", m_key); } if(m_valuesHasBeenSet) { Aws::Utils::Array valuesJsonList(m_values.size()); for(unsigned valuesIndex = 0; valuesIndex < valuesJsonList.GetLength(); ++valuesIndex) { valuesJsonList[valuesIndex].AsString(m_values[valuesIndex]); } payload.WithArray("Values", std::move(valuesJsonList)); } if(m_mapEntriesHasBeenSet) { Aws::Utils::Array mapEntriesJsonList(m_mapEntries.size()); for(unsigned mapEntriesIndex = 0; mapEntriesIndex < mapEntriesJsonList.GetLength(); ++mapEntriesIndex) { mapEntriesJsonList[mapEntriesIndex].AsObject(m_mapEntries[mapEntriesIndex].Jsonize()); } payload.WithArray("MapEntries", std::move(mapEntriesJsonList)); } return payload; } } // namespace Model } // namespace MTurk } // namespace Aws