/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::LexModelsV2::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; ListImportsRequest::ListImportsRequest() : m_botIdHasBeenSet(false), m_botVersionHasBeenSet(false), m_sortByHasBeenSet(false), m_filtersHasBeenSet(false), m_maxResults(0), m_maxResultsHasBeenSet(false), m_nextTokenHasBeenSet(false), m_localeIdHasBeenSet(false) { } Aws::String ListImportsRequest::SerializePayload() const { JsonValue payload; if(m_botIdHasBeenSet) { payload.WithString("botId", m_botId); } if(m_botVersionHasBeenSet) { payload.WithString("botVersion", m_botVersion); } if(m_sortByHasBeenSet) { payload.WithObject("sortBy", m_sortBy.Jsonize()); } 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_maxResultsHasBeenSet) { payload.WithInteger("maxResults", m_maxResults); } if(m_nextTokenHasBeenSet) { payload.WithString("nextToken", m_nextToken); } if(m_localeIdHasBeenSet) { payload.WithString("localeId", m_localeId); } return payload.View().WriteReadable(); }