/** * 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 ConnectWisdomService { namespace Model { SearchExpression::SearchExpression() : m_filtersHasBeenSet(false) { } SearchExpression::SearchExpression(JsonView jsonValue) : m_filtersHasBeenSet(false) { *this = jsonValue; } SearchExpression& SearchExpression::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; } return *this; } JsonValue SearchExpression::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)); } return payload; } } // namespace Model } // namespace ConnectWisdomService } // namespace Aws