/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::GameSparks::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; GetSnapshotRequest::GetSnapshotRequest() : m_gameNameHasBeenSet(false), m_sectionsHasBeenSet(false), m_snapshotIdHasBeenSet(false) { } Aws::String GetSnapshotRequest::SerializePayload() const { return {}; } void GetSnapshotRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_sectionsHasBeenSet) { for(const auto& item : m_sections) { ss << item; uri.AddQueryStringParameter("Sections", ss.str()); ss.str(""); } } }