/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::MediaStoreData::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; ListItemsRequest::ListItemsRequest() : m_pathHasBeenSet(false), m_maxResults(0), m_maxResultsHasBeenSet(false), m_nextTokenHasBeenSet(false) { } Aws::String ListItemsRequest::SerializePayload() const { return {}; } void ListItemsRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_pathHasBeenSet) { ss << m_path; uri.AddQueryStringParameter("Path", ss.str()); ss.str(""); } if(m_maxResultsHasBeenSet) { ss << m_maxResults; uri.AddQueryStringParameter("MaxResults", ss.str()); ss.str(""); } if(m_nextTokenHasBeenSet) { ss << m_nextToken; uri.AddQueryStringParameter("NextToken", ss.str()); ss.str(""); } }