/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::ElasticTranscoder::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; ListJobsByStatusRequest::ListJobsByStatusRequest() : m_statusHasBeenSet(false), m_ascendingHasBeenSet(false), m_pageTokenHasBeenSet(false) { } Aws::String ListJobsByStatusRequest::SerializePayload() const { return {}; } void ListJobsByStatusRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_ascendingHasBeenSet) { ss << m_ascending; uri.AddQueryStringParameter("Ascending", ss.str()); ss.str(""); } if(m_pageTokenHasBeenSet) { ss << m_pageToken; uri.AddQueryStringParameter("PageToken", ss.str()); ss.str(""); } }